SFML/examples/window/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

11 lines
292 B
CMake

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