cmake: Minor CMake cleanup

- Fix project name to be less confusing
- Better testing
This commit is contained in:
Juan Ramos
2023-03-15 13:51:43 -06:00
committed by Juan Ramos
parent d732b2de30
commit 65ad768d86
3 changed files with 19 additions and 6 deletions

View File

@@ -41,13 +41,11 @@ function(vlk_get_header_version)
endfunction()
vlk_get_header_version()
project(Vulkan-Headers LANGUAGES C VERSION ${VK_VERSION_STRING})
message(DEBUG "${PROJECT_NAME} = ${PROJECT_VERSION}")
project(VULKAN_HEADERS LANGUAGES C VERSION ${VK_VERSION_STRING})
add_library(Vulkan-Headers INTERFACE)
target_include_directories(Vulkan-Headers INTERFACE $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>)
add_library(Vulkan::Headers ALIAS Vulkan-Headers)
target_include_directories(Vulkan-Headers INTERFACE $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>)
if (CMAKE_VERSION VERSION_LESS "3.21")
# https://cmake.org/cmake/help/latest/variable/PROJECT_IS_TOP_LEVEL.html