Skip to content

Commit

Permalink
Update to latest headers & fix errors & cleanup generation script
Browse files Browse the repository at this point in the history
VulkanSC was added to vk.xml and broke the generation script. This was an
easy fix, just needed to specify which API the version information should
use. Still, took the time to cleanup the code by running pylint and fixing
anything it warned about.
  • Loading branch information
charles-lunarg committed Sep 19, 2023
1 parent 61f7761 commit b3969a2
Show file tree
Hide file tree
Showing 6 changed files with 1,370 additions and 1,609 deletions.
6 changes: 4 additions & 2 deletions ext/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ option(CATCH_BUILD_TESTING "" OFF)
option(CATCH_ENABLE_WERROR "" OFF)
option(CATCH_INSTALL_DOCS "" OFF)
option(CATCH_INSTALL_HELPERS "" OFF)
option(CATCH_INSTALL_EXTRAS "" ON)
set_property(GLOBAL PROPERTY CTEST_TARGETS_ADDED 1) #remove Catch2 target spam

include(FetchContent)
Expand All @@ -19,6 +20,7 @@ FetchContent_MakeAvailable(glfw)
FetchContent_Declare(
Catch2
GIT_REPOSITORY https://github.com/catchorg/Catch2
GIT_TAG v2.13.7
GIT_TAG v3.4.0
)
FetchContent_MakeAvailable(Catch2)
FetchContent_MakeAvailable(Catch2)

4 changes: 2 additions & 2 deletions gen/CurrentBuildVulkanVersion.cmake
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
set(VK_BOOTSTRAP_SOURCE_HEADER_VERSION 1.3.240)
set(VK_BOOTSTRAP_SOURCE_HEADER_VERSION_GIT_TAG v1.3.240)
set(VK_BOOTSTRAP_SOURCE_HEADER_VERSION 1.3.264)
set(VK_BOOTSTRAP_SOURCE_HEADER_VERSION_GIT_TAG v1.3.264)
Loading

0 comments on commit b3969a2

Please sign in to comment.