mirror of
https://github.com/SFML/SFML.git
synced 2024-11-25 04:41:05 +08:00
f24ca9a840
* Changed newlines to \n. * Removed whitespace before colons. * Fixed several alignments.
13 lines
301 B
CMake
13 lines
301 B
CMake
|
|
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}
|
|
DEPENDS sfml-audio sfml-network sfml-system)
|