khanat-opennel-code/code/snowballs2/client/src/CMakeLists.txt

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)