mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
18 lines
510 B
Text
18 lines
510 B
Text
|
FILE(GLOB SRC *.cpp *.h)
|
||
|
|
||
|
ADD_EXECUTABLE(login_service WIN32 ${SRC})
|
||
|
|
||
|
INCLUDE_DIRECTORIES(${MYSQL_INCLUDE_DIR} ${ZLIB_INCLUDE_DIR})
|
||
|
|
||
|
TARGET_LINK_LIBRARIES(login_service
|
||
|
${MYSQL_LIBRARIES}
|
||
|
${ZLIB_LIBRARIES}
|
||
|
nelmisc
|
||
|
nelnet)
|
||
|
|
||
|
NL_DEFAULT_PROPS(login_service "NelNS, Services: Login Service")
|
||
|
NL_ADD_RUNTIME_FLAGS(login_service)
|
||
|
|
||
|
INSTALL(TARGETS login_service RUNTIME DESTINATION sbin COMPONENT ls)
|
||
|
INSTALL(FILES login_service.cfg common.cfg DESTINATION ${NL_ETC_PREFIX}/nelns COMPONENT ls)
|