Browse Source

Examples: Vulkan: Fixed CMake include path. (#3550)

The backends directory was not included, so the build was failing.
pull/3555/head
Bill Six 4 years ago
committed by GitHub
parent
commit
acb8ef2006
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      examples/example_glfw_vulkan/CMakeLists.txt

2
examples/example_glfw_vulkan/CMakeLists.txt

@ -25,7 +25,7 @@ include_directories(${GLFW_DIR}/include)
# Dear ImGui
set(IMGUI_DIR ../../)
include_directories(${IMGUI_DIR} ..)
include_directories(${IMGUI_DIR} ${IMGUI_DIR}/backends ..)
# Libraries
find_package(Vulkan REQUIRED)

Loading…
Cancel
Save