mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-11 09:49:05 +00:00
20 lines
589 B
CMake
20 lines
589 B
CMake
FILE(GLOB SRC *.cpp *.h)
|
|
|
|
ADD_EXECUTABLE(snowballs_client WIN32 ${SRC})
|
|
|
|
TARGET_LINK_LIBRARIES(snowballs_client
|
|
nelmisc
|
|
nelpacs
|
|
nelnet
|
|
nel3d)
|
|
|
|
NL_DEFAULT_PROPS(snowballs_client "Snowballs, Client: Snowballs Client")
|
|
NL_ADD_RUNTIME_FLAGS(snowballs_client)
|
|
|
|
# If sound is enabled then add the definitions and link the libraries.
|
|
IF(ENABLE_SOUND)
|
|
ADD_DEFINITIONS(-DSBCLIENT_WITH_SOUND)
|
|
TARGET_LINK_LIBRARIES(snowballs_client ${NELSOUND_LIBRARY})
|
|
ENDIF(ENABLE_SOUND)
|
|
|
|
INSTALL(TARGETS snowballs_client RUNTIME DESTINATION ${NL_BIN_PREFIX} COMPONENT snowballsclient)
|