mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 04:11:30 +00:00
23 lines
444 B
CMake
23 lines
444 B
CMake
|
|
if(ARCH STREQUAL "amd64")
|
|
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")
|
|
add_library(ndk_tests
|
|
win2003_x86.c
|
|
winvista_x86.c
|
|
win7_x86.c
|
|
win8_x86.c
|
|
win81_x86.c
|
|
win10_x86.c)
|
|
endif()
|
|
|
|
if(TARGET ndk_tests)
|
|
add_dependencies(ndk_tests xdk psdk bugcodes)
|
|
endif()
|