SFML/examples/X11/CMakeLists.txt
Lukas Dürrenberger 85362fa232 Quote include paths in SFML and FreeType
Fixes issues if the build path contains spaces
2025-01-31 14:03:05 +01:00

13 lines
331 B
CMake

find_package(X11 REQUIRED)
# all source files
set(SRC X11.cpp)
# define the X11 target
sfml_add_example(X11Example GUI_APP
SOURCES ${SRC}
DEPENDS SFML::Window X11::X11)
# external dependency headers
target_include_directories(X11Example SYSTEM PRIVATE "${PROJECT_SOURCE_DIR}/examples/include")