mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 21:09:15 +00:00
b819608ed8
svn path=/branches/condrv_restructure/; revision=63104
18 lines
378 B
CMake
18 lines
378 B
CMake
|
|
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})
|
|
add_pch(usersrv usersrv/usersrv.h USERSRV_SOURCE)
|
|
#add_object_library(usersrv ${USERSRV_SOURCE})
|
|
|
|
set_module_type(usersrv module UNICODE)
|