mirror of
https://github.com/SFML/SFML.git
synced 2024-11-24 20:31:05 +08:00
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
181 B
CMake
8 lines
181 B
CMake
# all source files
|
|
set(SRC SoundCapture.cpp)
|
|
|
|
# define the sound-capture target
|
|
sfml_add_example(sound-capture
|
|
SOURCES ${SRC}
|
|
DEPENDS SFML::Audio)
|