[CMAKE] Some arm cmake fixes

This commit is contained in:
Mark Jansen 2019-08-18 16:14:16 +02:00
parent 9f5f7a97f8
commit b5dc79c963
No known key found for this signature in database
GPG key ID: B39240EE84BEAE8B
2 changed files with 18 additions and 16 deletions

View file

@ -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()

View file

@ -17,4 +17,6 @@ add_library(ndk_tests
win10_x86.c)
endif()
if(TARGET ndk_tests)
add_dependencies(ndk_tests xdk psdk bugcodes)
endif()