mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2025-01-08 08:55:22 +00:00
12 lines
352 B
CMake
12 lines
352 B
CMake
FILE(GLOB SRC *.cpp *.h)
|
|
|
|
ADD_EXECUTABLE(snowballs_chat_service WIN32 ${SRC})
|
|
|
|
TARGET_LINK_LIBRARIES(snowballs_chat_service
|
|
nelmisc
|
|
nelnet)
|
|
|
|
NL_DEFAULT_PROPS(snowballs_chat_service "Snowballs, Services: Chat")
|
|
NL_ADD_RUNTIME_FLAGS(snowballs_chat_service)
|
|
|
|
INSTALL(TARGETS snowballs_chat_service RUNTIME DESTINATION sbin COMPONENT services)
|