From 43ff2ef6587884de71eece99614c3a4a2c9c2e3e Mon Sep 17 00:00:00 2001 From: Hindrik Stegenga Date: Fri, 23 Jul 2021 11:53:11 +0200 Subject: [PATCH] Add include_directories to CMake to include the header files. --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3c323ce..eb1e124 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,6 +3,7 @@ cmake_minimum_required(VERSION 3.9) project(VulkanMemoryAllocator) find_package(Vulkan REQUIRED) +include_directories(${Vulkan_INCLUDE_DIR}) # VulkanMemoryAllocator contains an sample application and VmaReplay which are not build by default option(VMA_BUILD_SAMPLE "Build VulkanMemoryAllocator sample application" OFF)