2 spec2def(ntdll.dll def/ntdll.spec ADD_IMPORTLIB)
11 ${REACTOS_SOURCE_DIR}/include/reactos/subsys
12 ${REACTOS_SOURCE_DIR}/win32ss/include)
26 ${CMAKE_CURRENT_BINARY_DIR}/ntdll.def)
28 if(ARCH STREQUAL "i386")
29 list(APPEND ASM_SOURCE dispatch/i386/dispatch.S)
30 elseif(ARCH STREQUAL "amd64")
31 list(APPEND ASM_SOURCE dispatch/amd64/dispatch.S)
32 elseif(ARCH STREQUAL "arm")
33 list(APPEND ASM_SOURCE dispatch/arm/stubs_asm.s)
35 list(APPEND SOURCE dispatch/dispatch.c)
38 add_asm_files(ntdll_asm ${ASM_SOURCE})
39 add_library(ntdll SHARED ${SOURCE} ${ntdll_asm})
41 set_module_type(ntdll win32dll ENTRYPOINT 0)
42 #############################################
43 ## HACK FOR MSVC COMPILATION WITH win32dll ##
44 set_subsystem(ntdll console)
45 ################# END HACK #################
48 add_target_link_flags(ntdll "/RELEASE")
51 target_link_libraries(ntdll
57 add_pch(ntdll include/ntdll.h)
58 add_dependencies(ntdll ntstatus asm)
60 add_cd_file(TARGET ntdll DESTINATION reactos/system32 NO_CAB FOR all)