1
0
mirror of https://github.com/SFML/SFML.git synced 2025-03-03 10:28:04 +08:00
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)