SFML/examples/vulkan/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
293 B
CMake

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