fix Vulkan SDK include on Windows
continuous-integration/drone/push Build is passing Details

pull/48/head
cosmonaut 2023-10-12 11:11:44 -07:00
parent 54a8ff122c
commit d69bbbe818
1 changed files with 5 additions and 0 deletions

View File

@ -60,6 +60,11 @@ if(NOT MSVC)
set_property(TARGET Refresh PROPERTY COMPILE_FLAGS "-std=gnu99 -Wall -Wno-strict-aliasing -pedantic")
endif()
# Windows is silly and we need to manually include the Vulkan SDK
if(MSVC)
target_include_directories(Refresh PUBLIC $ENV{VULKAN_SDK}/include)
endif()
# Refresh folders as includes, for other targets to consume
target_include_directories(Refresh PUBLIC
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/src>