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.
11 lines
292 B
CMake
11 lines
292 B
CMake
# all source files
|
|
set(SRC X11.cpp)
|
|
|
|
# define the X11 target
|
|
sfml_add_example(X11Example GUI_APP
|
|
SOURCES ${SRC}
|
|
DEPENDS SFML::Window X11)
|
|
|
|
# external dependency headers
|
|
target_include_directories(X11Example SYSTEM PRIVATE ${PROJECT_SOURCE_DIR}/examples/X11)
|