mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 04:11:30 +00:00
23373acbb9
There is no need to compile our DLLs as shared libraries since we are managing symbols exports and imports through spec files. On my system, this reduces the configure-time by a factor of two.
28 lines
661 B
CMake
28 lines
661 B
CMake
|
|
include_directories(${REACTOS_SOURCE_DIR}/subsystems/win32/csrss/include)
|
|
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 ${PSEH_LIB} smlib)
|
|
add_importlibs(csrsrv smdll ntdll)
|
|
add_pch(csrsrv srv.h SOURCE)
|
|
add_dependencies(csrsrv psdk bugcodes)
|
|
add_cd_file(TARGET csrsrv DESTINATION reactos/system32 FOR all)
|