reactos/dll/ntdll/CMakeLists.txt
Hermès Bélusca-Maïto 65ce146169 Create a branch for working on csrss and co.
svn path=/branches/ros-csrss/; revision=57561
2012-10-14 13:04:31 +00:00

57 lines
1.2 KiB
CMake

spec2def(ntdll.dll def/ntdll.spec ADD_IMPORTLIB)
add_definitions(
-D__NTDLL__
-D_NTOSKRNL_
-DCRTDLL)
include_directories(
BEFORE include
${REACTOS_SOURCE_DIR}/include/reactos/subsys
${REACTOS_SOURCE_DIR}/win32ss/include)
list(APPEND SOURCE
csr/api.c
csr/capture.c
csr/connect.c
dbg/dbgui.c
ldr/ldrapi.c
ldr/ldrinit.c
ldr/ldrpe.c
ldr/ldrutils.c
rtl/libsupp.c
rtl/version.c
def/ntdll.rc
${CMAKE_CURRENT_BINARY_DIR}/ntdll.def)
if(ARCH STREQUAL "i386")
list(APPEND SOURCE dispatch/i386/dispatch.S)
elseif(ARCH STREQUAL "amd64")
list(APPEND SOURCE dispatch/amd64/dispatch.S)
elseif(ARCH STREQUAL "arm")
list(APPEND SOURCE dispatch/arm/stubs_asm.s)
else()
list(APPEND SOURCE dispatch/dispatch.c)
endif(ARCH STREQUAL "i386")
add_library(ntdll SHARED ${SOURCE})
set_module_type(ntdll win32dll ENTRYPOINT 0)
if(MSVC)
add_target_link_flags(ntdll "/RELEASE")
endif()
target_link_libraries(ntdll
rtl
ntdllsys
libcntpr
${PSEH_LIB})
add_pch(ntdll include/ntdll.h)
add_dependencies(ntdll ntstatus asm)
add_cd_file(TARGET ntdll DESTINATION reactos/system32 NO_CAB FOR all)