mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-01 19:26:16 +00:00
13 lines
192 B
CMake
13 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()
|