mirror of
https://github.com/charles-lunarg/vk-bootstrap.git
synced 2024-11-10 02:41:47 +00:00
f223c8d5ae
Adds extensive integration tests that exercise the various ways of finding the Vulkan-Headers. vk-bootstrap should now use the Vulkan-Headers or Vulkan::Headers targets if they were already defined (such as is the case of FetchContent), and will look for the VulkanHeaders package and Vulkan package as a fallback, and will FetchContent Vulkan-Headers directly if that fails. This should make integration seamless with the various ways vulkan-headers is acquired. The vk-bootstrap-vulkan-headers target was dropped in favor of directly linking to Vulkan-Headers (creating a target by that name if none exists).
42 lines
1.1 KiB
CMake
42 lines
1.1 KiB
CMake
cmake_minimum_required(VERSION 3.14.2)
|
|
|
|
project(IntegrationTests LANGUAGES CXX)
|
|
|
|
if (VULKAN_HEADER_VERSION_GIT_TAG)
|
|
include(FetchContent)
|
|
FetchContent_Declare(
|
|
VulkanHeadersIntegrationTest
|
|
GIT_REPOSITORY https://github.com/KhronosGroup/Vulkan-Headers
|
|
GIT_TAG ${VULKAN_HEADER_VERSION_GIT_TAG}
|
|
)
|
|
FetchContent_MakeAvailable(VulkanHeadersIntegrationTest)
|
|
|
|
if (NOT TARGET Vulkan::Headers)
|
|
message(FATAL_ERROR "Vulkan::Headers target not defined")
|
|
endif()
|
|
endif()
|
|
|
|
if (FIND_PACKAGE_VULKAN_HEADERS)
|
|
find_package(VulkanHeaders REQUIRED)
|
|
endif()
|
|
|
|
if (FIND_PACKAGE_VULKAN)
|
|
find_package(Vulkan REQUIRED)
|
|
endif()
|
|
|
|
if (ADD_SUBDIRECTORY_TESTING)
|
|
add_subdirectory(../.. ${CMAKE_CURRENT_BINARY_DIR}/vk-bootstrap)
|
|
endif()
|
|
|
|
if (FIND_PACKAGE_TESTING)
|
|
find_package(vk-bootstrap CONFIG REQUIRED)
|
|
endif()
|
|
|
|
if (NOT TARGET vk-bootstrap::vk-bootstrap)
|
|
message(FATAL_ERROR "vk-bootstrap::vk-bootstrap target not defined")
|
|
endif()
|
|
|
|
add_executable(integration_test integration_test.cpp)
|
|
target_link_libraries(integration_test vk-bootstrap::vk-bootstrap)
|
|
|