reactos/win32ss/user/winsrv/usersrv.cmake

20 lines
524 B
CMake
Raw Normal View History

include_directories(usersrv)
list(APPEND USERSRV_SOURCE
usersrv/harderror.c
usersrv/init.c
usersrv/register.c
usersrv/shutdown.c
# usersrv/usersrv.rc
usersrv/usersrv.h)
add_library(usersrv ${USERSRV_SOURCE})
target_link_libraries(usersrv pseh)
add_dependencies(usersrv xdk)
add_pch(usersrv usersrv/usersrv.h USERSRV_SOURCE)
#add_object_library(usersrv ${USERSRV_SOURCE})
list(APPEND USERSRV_IMPORT_LIBS basesrv)
list(APPEND USERSRV_DELAY_IMPORT_LIBS psapi)
set_module_type(usersrv module UNICODE)