mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-12-14 21:20:55 +00:00
13 lines
384 B
Text
13 lines
384 B
Text
|
FILE(GLOB SRC *.cpp *.h)
|
||
|
|
||
|
ADD_EXECUTABLE(snowballs_position_service WIN32 ${SRC})
|
||
|
|
||
|
TARGET_LINK_LIBRARIES(snowballs_position_service
|
||
|
nelmisc
|
||
|
nelnet)
|
||
|
|
||
|
NL_DEFAULT_PROPS(snowballs_position_service "Snowballs, Services: Position Service")
|
||
|
NL_ADD_RUNTIME_FLAGS(snowballs_position_service)
|
||
|
|
||
|
INSTALL(TARGETS snowballs_position_service RUNTIME DESTINATION sbin COMPONENT services)
|