mirror of
https://github.com/SFML/SFML.git
synced 2025-01-19 07:45:13 +08:00
11 lines
291 B
CMake
11 lines
291 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)
|