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
296 B
CMake
13 lines
296 B
CMake
|
|
set(SRCROOT ${PROJECT_SOURCE_DIR}/examples/sockets)
|
|
|
|
# all source files
|
|
set(SRC ${SRCROOT}/Sockets.cpp
|
|
${SRCROOT}/TCP.cpp
|
|
${SRCROOT}/UDP.cpp)
|
|
|
|
# define the sockets target
|
|
sfml_add_example(sockets
|
|
SOURCES ${SRC}
|
|
DEPENDS sfml-network sfml-system)
|