mirror of
https://github.com/SFML/SFML.git
synced 2024-11-25 12:51:05 +08:00
12 lines
276 B
CMake
12 lines
276 B
CMake
|
|
set(SRCROOT ${PROJECT_SOURCE_DIR}/examples/vulkan)
|
|
|
|
# all source files
|
|
set(SRC ${SRCROOT}/Vulkan.cpp)
|
|
|
|
# define the window target
|
|
sfml_add_example(vulkan GUI_APP
|
|
SOURCES ${SRC}
|
|
DEPENDS sfml-graphics
|
|
RESOURCES_DIR resources)
|