2012-05-29 13:31:11 +00:00
|
|
|
FILE(GLOB SRC *.cpp *.h)
|
|
|
|
|
|
|
|
ADD_EXECUTABLE(naming_service WIN32 ${SRC})
|
|
|
|
|
|
|
|
TARGET_LINK_LIBRARIES(naming_service
|
|
|
|
nelmisc
|
|
|
|
nelnet)
|
|
|
|
|
|
|
|
NL_DEFAULT_PROPS(naming_service "NeLNS, Services: Naming Service")
|
|
|
|
NL_ADD_RUNTIME_FLAGS(naming_service)
|
|
|
|
|
|
|
|
INSTALL(TARGETS naming_service RUNTIME DESTINATION sbin COMPONENT ns)
|
2012-09-22 20:57:38 +00:00
|
|
|
INSTALL(FILES naming_service.cfg common.cfg DESTINATION ${NL_ETC_PREFIX}/nelns COMPONENT ns)
|