mirror of
https://github.com/reactos/reactos.git
synced 2024-11-07 15:10:53 +00:00
c708f46621
Fix CsrCaptureTimeout (verified against Windows Server 2003). [KERNEL32-CSRSRV-BASESRV-CONSRV-WINSRV] Clean the code: remove unuseful comments and dprints, reorganize a little bit few source files. svn path=/branches/ros-csrss/; revision=58453
23 lines
502 B
CMake
23 lines
502 B
CMake
|
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/subsys)
|
|
|
|
spec2def(basesrv.dll basesrv.spec)
|
|
|
|
list(APPEND SOURCE
|
|
dosdev.c
|
|
init.c
|
|
proc.c
|
|
sndsntry.c
|
|
basesrv.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/basesrv.def)
|
|
|
|
add_library(basesrv SHARED ${SOURCE})
|
|
|
|
target_link_libraries(basesrv ${PSEH_LIB})
|
|
|
|
set_module_type(basesrv nativedll) # win32dll
|
|
|
|
add_importlibs(basesrv ntdll csrsrv)
|
|
|
|
add_dependencies(basesrv bugcodes)
|
|
add_cd_file(TARGET basesrv DESTINATION reactos/system32 FOR all)
|