mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 20:32:36 +00:00
d2aeaba5f8
Move CSRSS, CSRSRV there, as well as CSR client calls from NTDLL into a "CSRLIB" library.
27 lines
581 B
CMake
27 lines
581 B
CMake
|
|
include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/subsys)
|
|
|
|
spec2def(csrsrv.dll csrsrv.spec ADD_IMPORTLIB)
|
|
|
|
list(APPEND SOURCE
|
|
api.c
|
|
init.c
|
|
procsup.c
|
|
server.c
|
|
session.c
|
|
thredsup.c
|
|
wait.c
|
|
srv.h)
|
|
|
|
add_library(csrsrv MODULE
|
|
${SOURCE}
|
|
csrsrv.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/csrsrv.def)
|
|
|
|
set_module_type(csrsrv nativedll)
|
|
target_link_libraries(csrsrv smlib ${PSEH_LIB})
|
|
add_importlibs(csrsrv ntdll)
|
|
add_pch(csrsrv srv.h SOURCE)
|
|
add_dependencies(csrsrv psdk bugcodes)
|
|
add_cd_file(TARGET csrsrv DESTINATION reactos/system32 FOR all)
|