mirror of
https://github.com/reactos/reactos.git
synced 2026-05-30 23:33:24 +08:00
[CMAKE] Some arm cmake fixes
This commit is contained in:
@@ -6,6 +6,6 @@ endif()
|
||||
include(ntdll_crt_apitest.cmake)
|
||||
include(msvcrt_crt_apitest.cmake)
|
||||
|
||||
if(NOT ARCH STREQUAL "amd64")
|
||||
if(NOT ARCH STREQUAL "amd64" AND NOT ARCH STREQUAL "arm")
|
||||
include(crtdll_crt_apitest.cmake)
|
||||
endif()
|
||||
|
||||
@@ -1,20 +1,22 @@
|
||||
|
||||
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)
|
||||
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)
|
||||
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)
|
||||
if(TARGET ndk_tests)
|
||||
add_dependencies(ndk_tests xdk psdk bugcodes)
|
||||
endif()
|
||||
|
||||
Reference in New Issue
Block a user