mirror of
https://github.com/SFML/SFML.git
synced 2024-11-25 04:41:05 +08:00
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.
12 lines
332 B
CMake
12 lines
332 B
CMake
# all source files
|
|
set(SRC Vulkan.cpp)
|
|
|
|
# define the window target
|
|
sfml_add_example(vulkan GUI_APP
|
|
SOURCES ${SRC}
|
|
DEPENDS SFML::Graphics
|
|
RESOURCES_DIR resources)
|
|
|
|
# external dependency headers
|
|
target_include_directories(vulkan SYSTEM PRIVATE ${PROJECT_SOURCE_DIR}/examples/vulkan)
|