[NTDLL_VISTA] Fix the build for arm

This commit is contained in:
Mark Jansen 2019-08-18 21:48:07 +02:00
parent 6872cef0da
commit ca4b001544
No known key found for this signature in database
GPG key ID: B39240EE84BEAE8B

View file

@ -15,6 +15,9 @@ list(APPEND SOURCE
add_library(ntdll_vista MODULE ${SOURCE})
set_module_type(ntdll_vista win32dll ENTRYPOINT DllMain 12)
if(ARCH STREQUAL "arm")
target_link_libraries(ntdll_vista chkstk)
endif()
add_importlibs(ntdll_vista ntdll)
add_dependencies(ntdll_vista psdk)
add_cd_file(TARGET ntdll_vista DESTINATION reactos/system32 FOR all)