reactos/sdk/include/ndk/tests/CMakeLists.txt

23 lines
444 B
CMake
Raw Normal View History

if(ARCH STREQUAL "amd64")
2019-08-18 14:14:16 +00:00
add_library(ndk_tests
win2003_x64.c
winvista_x64.c
win7_x64.c
win8_x64.c
win81_x64.c
win10_x64.c)
elseif(ARCH STREQUAL "i386")
2019-08-18 14:14:16 +00:00
add_library(ndk_tests
win2003_x86.c
winvista_x86.c
win7_x86.c
win8_x86.c
win81_x86.c
win10_x86.c)
endif()
2019-08-18 14:14:16 +00:00
if(TARGET ndk_tests)
add_dependencies(ndk_tests xdk psdk bugcodes)
endif()