diff options
author | Juan Ramos <[email protected]> | 2023-07-05 09:59:18 -0600 |
---|---|---|
committer | Juan Ramos <[email protected]> | 2023-07-05 10:19:57 -0600 |
commit | 6f34ca5a370c3664c02abdfc9b11baf7b0c369bd (patch) | |
tree | 04d8a108fcc1f6f3af2e98c3e03c85086281b69b /tests | |
parent | ad5f8ee9750e99c5397d44c075ae5d8a38271de4 (diff) | |
download | Vulkan-Headers-6f34ca5a370c3664c02abdfc9b11baf7b0c369bd.tar.gz Vulkan-Headers-6f34ca5a370c3664c02abdfc9b11baf7b0c369bd.zip |
cmake: Remove usage of configure_package_config_file
Fixes issue shown here:
https://github.com/KhronosGroup/Vulkan-Headers/pull/415
Diffstat (limited to 'tests')
-rw-r--r-- | tests/find_package/CMakeLists.txt | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/find_package/CMakeLists.txt b/tests/find_package/CMakeLists.txt index d9f32a4..f45fc6c 100644 --- a/tests/find_package/CMakeLists.txt +++ b/tests/find_package/CMakeLists.txt @@ -8,15 +8,6 @@ if (NOT TARGET Vulkan::Headers) message(FATAL_ERROR "Vulkan::Headers target not defined") endif() -if (NOT DEFINED VULKAN_HEADERS_REGISTRY_DIRECTORY) - message(FATAL_ERROR "VULKAN_HEADERS_REGISTRY_DIRECTORY not defined!") -endif() - -if (NOT EXISTS "${VULKAN_HEADERS_REGISTRY_DIRECTORY}/vk.xml") - message(FATAL_ERROR "VULKAN_HEADERS_REGISTRY_DIRECTORY not valid!") -endif() -message(STATUS "VULKAN_HEADERS_REGISTRY_DIRECTORY = ${VULKAN_HEADERS_REGISTRY_DIRECTORY}") - if (NOT DEFINED VulkanHeaders_VERSION) message(FATAL_ERROR "VulkanHeaders_VERSION not defined!") endif() |