mirror of
https://github.com/reactos/reactos.git
synced 2025-06-26 08:59:43 +00:00

Fix crt/bootcdregtest regression, due to _USER32_WSPRINTF. add_definitions does not apply to target, but current directory. svn path=/branches/cmake-bringup/; revision=50535
16 lines
294 B
CMake
16 lines
294 B
CMake
|
|
include_directories(.. ../include)
|
|
|
|
add_definitions(-D_USER32_WSPRINTF)
|
|
|
|
add_library(user32_wsprintf
|
|
streamout.c
|
|
wstreamout.c
|
|
wsprintfA.c
|
|
wsprintfW.c
|
|
wvsprintfA.c
|
|
wvsprintfW.c
|
|
wvsnprintfA.c
|
|
wvsnprintfW.c
|
|
../string/mbstowcs_nt.c
|
|
../string/wcstombs_nt.c)
|