mirror of
https://github.com/reactos/reactos.git
synced 2024-11-18 21:13:52 +00:00
20 lines
333 B
CMake
20 lines
333 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)
|
|
else()
|
|
add_library(ndk_tests
|
|
win2003_x86.c
|
|
winvista_x86.c
|
|
win7_x86.c
|
|
win8_x86.c
|
|
win81_x86.c
|
|
win10_x86.c)
|
|
endif()
|
|
|
|
add_dependencies(ndk_tests xdk psdk bugcodes)
|