SFML/examples/voip/CMakeLists.txt

13 lines
289 B
CMake
Raw Normal View History

set(SRCROOT ${PROJECT_SOURCE_DIR}/examples/voip)
# all source files
set(SRC ${SRCROOT}/VoIP.cpp
${SRCROOT}/Client.cpp
${SRCROOT}/Server.cpp)
# define the voip target
sfml_add_example(voip
SOURCES ${SRC}
2018-03-21 02:46:57 +08:00
DEPENDS sfml-audio sfml-network)