mirror of
https://github.com/reactos/reactos.git
synced 2025-05-25 12:14:32 +00:00
[CMAKE] Some arm cmake fixes
This commit is contained in:
parent
9f5f7a97f8
commit
b5dc79c963
2 changed files with 18 additions and 16 deletions
|
@ -6,6 +6,6 @@ endif()
|
||||||
include(ntdll_crt_apitest.cmake)
|
include(ntdll_crt_apitest.cmake)
|
||||||
include(msvcrt_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)
|
include(crtdll_crt_apitest.cmake)
|
||||||
endif()
|
endif()
|
||||||
|
|
|
@ -1,20 +1,22 @@
|
||||||
|
|
||||||
if(ARCH STREQUAL "amd64")
|
if(ARCH STREQUAL "amd64")
|
||||||
add_library(ndk_tests
|
add_library(ndk_tests
|
||||||
win2003_x64.c
|
win2003_x64.c
|
||||||
winvista_x64.c
|
winvista_x64.c
|
||||||
win7_x64.c
|
win7_x64.c
|
||||||
win8_x64.c
|
win8_x64.c
|
||||||
win81_x64.c
|
win81_x64.c
|
||||||
win10_x64.c)
|
win10_x64.c)
|
||||||
elseif(ARCH STREQUAL "i386")
|
elseif(ARCH STREQUAL "i386")
|
||||||
add_library(ndk_tests
|
add_library(ndk_tests
|
||||||
win2003_x86.c
|
win2003_x86.c
|
||||||
winvista_x86.c
|
winvista_x86.c
|
||||||
win7_x86.c
|
win7_x86.c
|
||||||
win8_x86.c
|
win8_x86.c
|
||||||
win81_x86.c
|
win81_x86.c
|
||||||
win10_x86.c)
|
win10_x86.c)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
add_dependencies(ndk_tests xdk psdk bugcodes)
|
if(TARGET ndk_tests)
|
||||||
|
add_dependencies(ndk_tests xdk psdk bugcodes)
|
||||||
|
endif()
|
||||||
|
|
Loading…
Reference in a new issue