Merge pull request #22 from LesleyLai/master

Create alias cmake target
This commit is contained in:
Charles Giessen 2020-03-25 13:15:41 -06:00 committed by GitHub
commit d8ea155798
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,6 +4,7 @@ project(VulkanBootstrap)
find_package(Vulkan REQUIRED)
add_library(vk-bootstrap src/VkBootstrap.h src/VkBootstrap.cpp)
add_library(vk-bootstrap::vk-bootstrap ALIAS vk-bootstrap)
target_include_directories(vk-bootstrap PUBLIC src)