From 142986cdb767037118b687387b097ff6b3e7fe7d Mon Sep 17 00:00:00 2001 From: sean <43609023+spnda@users.noreply.github.com> Date: Sat, 30 Oct 2021 23:39:40 +0200 Subject: [PATCH] Fix: Add VkBootstrapDispatch to includable files --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3556eeb..ef634e5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -27,7 +27,7 @@ else () endif() endif() -add_library(vk-bootstrap src/VkBootstrap.h src/VkBootstrap.cpp) +add_library(vk-bootstrap src/VkBootstrap.h src/VkBootstrap.cpp src/VkBootstrapDispatch.h) add_library(vk-bootstrap::vk-bootstrap ALIAS vk-bootstrap) add_library(vk-bootstrap-compiler-warnings INTERFACE) @@ -72,7 +72,7 @@ target_link_libraries(vk-bootstrap target_compile_features(vk-bootstrap PUBLIC cxx_std_14) include(GNUInstallDirs) -install(FILES src/VkBootstrap.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}) +install(FILES src/VkBootstrap.h src/VkBootstrapDispatch.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}) install(TARGETS vk-bootstrap RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}