Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 189a69d

Browse files
authored
Fix Vulkan embedder example (#39052)
1 parent a2a3a13 commit 189a69d

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

examples/vulkan_glfw/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ set(GLFW_VULKAN_STATIC OFF CACHE BOOL "" FORCE)
4040
add_subdirectory(${GLFW_REPOSITORY} build_glfw)
4141

4242
target_link_libraries(${EXE_NAME} PRIVATE glfw)
43-
target_include_directories(${EXE_NAME} PRIVATE $(GLFW_REPOSITORY)/include)
43+
target_include_directories(${EXE_NAME} PRIVATE ${GLFW_REPOSITORY}/include)
4444

4545

4646
# Dependency: Flutter Engine

examples/vulkan_glfw/src/main.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Use of this source code is governed by a BSD-style license that can be
33
// found in the LICENSE file.
44

5+
#include <chrono>
56
#include <cstdlib>
67
#include <iostream>
78
#include <optional>

0 commit comments

Comments
 (0)