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.
8 lines
154 B
CMake
8 lines
154 B
CMake
# all source files
|
|
set(SRC Ftp.cpp)
|
|
|
|
# define the ftp target
|
|
sfml_add_example(ftp
|
|
SOURCES ${SRC}
|
|
DEPENDS SFML::Network)
|