diff options
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/Config.cmake.in | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/cmake/Config.cmake.in b/cmake/Config.cmake.in deleted file mode 100644 index 4bf6cd5..0000000 --- a/cmake/Config.cmake.in +++ /dev/null @@ -1,25 +0,0 @@ -@PACKAGE_INIT@ - -include("${CMAKE_CURRENT_LIST_DIR}/@[email protected]") -check_required_components("@PROJECT_NAME@") - -# ALIAS for imported target requires CMake >= 3.11: -# - https://cmake.org/cmake/help/latest/release/3.11.html#other -if(NOT CMAKE_VERSION VERSION_LESS 3.11) - if(NOT TARGET Vulkan::Headers) - set_target_properties( - Vulkan::Vulkan-Headers - PROPERTIES - IMPORTED_GLOBAL True - ) - add_library(Vulkan::Headers ALIAS Vulkan::Vulkan-Headers) - endif() - if(NOT TARGET Vulkan::Registry) - set_target_properties( - Vulkan::Vulkan-Registry - PROPERTIES - IMPORTED_GLOBAL True - ) - add_library(Vulkan::Registry ALIAS Vulkan::Vulkan-Registry) - endif() -endif() |