mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 09:50:02 +00:00
12 lines
192 B
CMake
12 lines
192 B
CMake
|
|
if(ARCH STREQUAL "amd64")
|
|
add_library(ndk_tests
|
|
win2003_x64.c
|
|
winvista_x64.c
|
|
win7_x64.c)
|
|
else()
|
|
add_library(ndk_tests
|
|
win2003_x86.c
|
|
winvista_x86.c
|
|
win7_x86.c)
|
|
endif()
|