Skip to content

Commit

Permalink
Add support for creating Vulkan window surfaces.
Browse files Browse the repository at this point in the history
  • Loading branch information
binary1248 committed Feb 26, 2019
1 parent 4043f71 commit fce52bd
Show file tree
Hide file tree
Showing 36 changed files with 16,176 additions and 1 deletion.
1 change: 1 addition & 0 deletions examples/CMakeLists.txt
Expand Up @@ -27,6 +27,7 @@ if(SFML_BUILD_GRAPHICS)
add_subdirectory(joystick)
add_subdirectory(shader)
add_subdirectory(island)
add_subdirectory(vulkan)
endif()

if(SFML_OS_WINDOWS)
Expand Down
11 changes: 11 additions & 0 deletions examples/vulkan/CMakeLists.txt
@@ -0,0 +1,11 @@

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)

0 comments on commit fce52bd

Please sign in to comment.