mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 00:34:39 +00:00
d2aeaba5f8
Move CSRSS, CSRSRV there, as well as CSR client calls from NTDLL into a "CSRLIB" library.
13 lines
258 B
CMake
13 lines
258 B
CMake
|
|
add_definitions(-D_NTSYSTEM_)
|
|
|
|
include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/subsys/csr)
|
|
|
|
list(APPEND SOURCE
|
|
api.c
|
|
capture.c
|
|
connect.c)
|
|
|
|
add_library(csrlib ${SOURCE})
|
|
add_pch(csrlib csrlib.h SOURCE)
|
|
add_dependencies(csrlib psdk)
|