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.
9 lines
219 B
CMake
9 lines
219 B
CMake
# all source files
|
|
set(SRC Joystick.cpp)
|
|
|
|
# define the joystick target
|
|
sfml_add_example(joystick GUI_APP
|
|
SOURCES ${SRC}
|
|
DEPENDS SFML::Graphics
|
|
RESOURCES_DIR resources)
|