mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 22:00:55 +00:00
fb7355f834
svn path=/branches/ntvdm/; revision=59499
29 lines
737 B
CMake
29 lines
737 B
CMake
|
|
include_directories(
|
|
${REACTOS_SOURCE_DIR}/include/reactos/subsys
|
|
${REACTOS_SOURCE_DIR}/win32ss/include)
|
|
|
|
spec2def(winsrv.dll winsrv.spec)
|
|
|
|
# The components
|
|
include(consrv.cmake)
|
|
include(usersrv.cmake)
|
|
|
|
list(APPEND SOURCE
|
|
init.c
|
|
winsrv.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/winsrv.def)
|
|
|
|
add_library(winsrv SHARED ${SOURCE})
|
|
|
|
# Add the components
|
|
target_link_libraries(winsrv consrv usersrv)
|
|
target_link_libraries(winsrv win32ksys ${PSEH_LIB}) # win32ksys because of NtUser...()
|
|
|
|
set_module_type(winsrv win32dll UNICODE)
|
|
|
|
add_importlibs(winsrv msvcrt kernel32 ntdll csrsrv)
|
|
add_delay_importlibs(winsrv user32 gdi32 advapi32)
|
|
|
|
add_dependencies(winsrv bugcodes)
|
|
add_cd_file(TARGET winsrv DESTINATION reactos/system32 FOR all)
|