1 2include_directories(usersrv) 3 4list(APPEND USERSRV_SOURCE 5 usersrv/harderror.c 6 usersrv/init.c 7 usersrv/register.c 8 usersrv/shutdown.c 9 # usersrv/usersrv.rc 10 usersrv/usersrv.h) 11 12add_library(usersrv ${USERSRV_SOURCE}) 13target_link_libraries(usersrv pseh) 14add_dependencies(usersrv xdk) 15add_pch(usersrv usersrv/usersrv.h USERSRV_SOURCE) 16#add_object_library(usersrv ${USERSRV_SOURCE}) 17list(APPEND USERSRV_IMPORT_LIBS basesrv) 18list(APPEND USERSRV_DELAY_IMPORT_LIBS psapi) 19set_module_type(usersrv module UNICODE) 20