khanat-opennel-code/code/nelns/login_service/CMakeLists.txt
Guillaume Dupuy 6f1197d633 Allow target to work with sheetName and a quiet option
HG : Enter commit message.  Lines beginning with 'HG:' are removed.
2016-11-28 00:54:33 +01:00

17 lines
510 B
CMake

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)