65fef85b30
CMake doesn't require absolute paths so we can safely remove SRCROOT and let implicit relative pathing achieve the same result with less work on our part.
10 lines
207 B
CMake
10 lines
207 B
CMake
# all source files
|
|
set(SRC VoIP.cpp
|
|
Client.cpp
|
|
Server.cpp)
|
|
|
|
# define the voip target
|
|
sfml_add_example(voip
|
|
SOURCES ${SRC}
|
|
DEPENDS SFML::Audio SFML::Network)
|