mirror of
https://github.com/reactos/reactos.git
synced 2025-06-29 07:39:44 +00:00
27 lines
645 B
CMake
27 lines
645 B
CMake
|
|
include_directories(include)
|
|
|
|
add_definitions(-D_CRTBLD)
|
|
|
|
include(crt.cmake)
|
|
include(libcntpr.cmake)
|
|
include(msvcrtex.cmake)
|
|
include(oldnames.cmake)
|
|
|
|
add_library(user32_wsprintf
|
|
printf/streamout.c
|
|
printf/wstreamout.c
|
|
printf/wsprintfA.c
|
|
printf/wsprintfW.c
|
|
printf/wvsprintfA.c
|
|
printf/wvsprintfW.c
|
|
printf/wvsnprintfA.c
|
|
printf/wvsnprintfW.c
|
|
string/mbstowcs_nt.c
|
|
string/wcstombs_nt.c)
|
|
|
|
set_property(TARGET user32_wsprintf PROPERTY COMPILE_DEFINITIONS _USER32_WSPRINTF)
|
|
|
|
add_library(getopt misc/getopt.c)
|
|
set_property(TARGET getopt PROPERTY COMPILE_DEFINITIONS _DLL __USE_CRTIMP)
|
|
add_dependencies(getopt psdk)
|