SFML/examples/voip/CMakeLists.txt
2010-08-19 15:59:24 +00:00

13 lines
311 B
CMake

set(SRCROOT ${CMAKE_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}
DEPENDS sfml-audio sfml-network sfml-system)