Update dependencies

This commit is contained in:
Georg Hagen
2025-06-23 01:11:22 +02:00
parent 734e898990
commit cab7c15607
23 changed files with 31 additions and 27 deletions

View File

@@ -16,7 +16,7 @@ elseif (OPENVULKANO_ENABLE_ASSIMP)
assimp assimp
EXCLUDE_FROM_ALL EXCLUDE_FROM_ALL
GIT_REPOSITORY ${ASSIMP_REPO} GIT_REPOSITORY ${ASSIMP_REPO}
GIT_TAG v5.0.1 GIT_TAG v6.0.2
GIT_SHALLOW TRUE GIT_SHALLOW TRUE
) )

View File

@@ -7,7 +7,7 @@ endif ()
FetchContent_Declare( FetchContent_Declare(
Catch2 Catch2
GIT_REPOSITORY ${CATCH_REPO} GIT_REPOSITORY ${CATCH_REPO}
GIT_TAG v3.6.0 GIT_TAG v3.8.1
GIT_SHALLOW TRUE GIT_SHALLOW TRUE
) )

View File

@@ -8,7 +8,7 @@ FetchContent_Declare(
fmt fmt
EXCLUDE_FROM_ALL EXCLUDE_FROM_ALL
GIT_REPOSITORY ${FMT_REPO} GIT_REPOSITORY ${FMT_REPO}
GIT_TAG 10.2.1 GIT_TAG master
GIT_SHALLOW TRUE GIT_SHALLOW TRUE
) )
FetchContent_MakeAvailable(fmt) FetchContent_MakeAvailable(fmt)

View File

@@ -8,7 +8,7 @@ FetchContent_Declare(
glfw glfw
EXCLUDE_FROM_ALL EXCLUDE_FROM_ALL
GIT_REPOSITORY ${GLFW_REPO} GIT_REPOSITORY ${GLFW_REPO}
GIT_TAG 3.3.8 GIT_TAG 3.4
GIT_SHALLOW TRUE GIT_SHALLOW TRUE
) )
set(GLFW_BUILD_EXAMPLES OFF CACHE BOOL "" FORCE) set(GLFW_BUILD_EXAMPLES OFF CACHE BOOL "" FORCE)

View File

@@ -8,7 +8,7 @@ FetchContent_Declare(
magic_enum magic_enum
EXCLUDE_FROM_ALL EXCLUDE_FROM_ALL
GIT_REPOSITORY ${MAGICENUM_REPO} GIT_REPOSITORY ${MAGICENUM_REPO}
GIT_TAG v0.9.3 GIT_TAG v0.9.7
GIT_SHALLOW TRUE GIT_SHALLOW TRUE
) )
FetchContent_MakeAvailable(magic_enum) FetchContent_MakeAvailable(magic_enum)

View File

@@ -8,7 +8,7 @@ FetchContent_Declare(
pugixml pugixml
EXCLUDE_FROM_ALL EXCLUDE_FROM_ALL
GIT_REPOSITORY ${PUGIXML_REPO} GIT_REPOSITORY ${PUGIXML_REPO}
GIT_TAG 4bc14418d12d289dd9978fdce9490a45deeb653e GIT_TAG v1.15
GIT_SHALLOW FALSE GIT_SHALLOW FALSE
) )
set(BUILD_SHARED_LIBS OFF CACHE BOOL "" FORCE) set(BUILD_SHARED_LIBS OFF CACHE BOOL "" FORCE)

View File

@@ -8,7 +8,7 @@ FetchContent_Declare(
ryml ryml
EXCLUDE_FROM_ALL EXCLUDE_FROM_ALL
GIT_REPOSITORY ${RAPIDYAML_REPO} GIT_REPOSITORY ${RAPIDYAML_REPO}
GIT_TAG v0.7.2 GIT_TAG v0.9.0
GIT_SHALLOW FALSE # ensure submodules are checked out GIT_SHALLOW FALSE # ensure submodules are checked out
) )
FetchContent_MakeAvailable(ryml) FetchContent_MakeAvailable(ryml)

View File

@@ -8,9 +8,9 @@ FetchContent_Declare(
spdlog spdlog
EXCLUDE_FROM_ALL EXCLUDE_FROM_ALL
GIT_REPOSITORY ${SPDLOG_REPO} GIT_REPOSITORY ${SPDLOG_REPO}
GIT_TAG v1.14.1 GIT_TAG v1.15.3
GIT_SHALLOW TRUE GIT_SHALLOW TRUE
) )
option(SPDLOG_FMT_EXTERNAL "" ON) set(SPDLOG_FMT_EXTERNAL ON CACHE BOOL "" FORCE)
FetchContent_MakeAvailable(spdlog) FetchContent_MakeAvailable(spdlog)
#add_definitions(-DSPDLOG_FMT_EXTERNAL) #add_definitions(-DSPDLOG_FMT_EXTERNAL)

View File

@@ -9,6 +9,7 @@ FetchContent_Declare(
EXCLUDE_FROM_ALL EXCLUDE_FROM_ALL
GIT_REPOSITORY ${STB_REPO} GIT_REPOSITORY ${STB_REPO}
GIT_SHALLOW TRUE GIT_SHALLOW TRUE
GIT_TAG master
) )
FetchContent_MakeAvailable(stb) FetchContent_MakeAvailable(stb)

View File

@@ -8,7 +8,7 @@ FetchContent_Declare (
tracy tracy
EXCLUDE_FROM_ALL EXCLUDE_FROM_ALL
GIT_REPOSITORY ${TRACY_REPO} GIT_REPOSITORY ${TRACY_REPO}
GIT_TAG v0.10 GIT_TAG v0.12.1
GIT_SHALLOW TRUE GIT_SHALLOW TRUE
GIT_PROGRESS TRUE GIT_PROGRESS TRUE
) )

View File

@@ -8,7 +8,7 @@ FetchContent_Declare(
utfcpp utfcpp
EXCLUDE_FROM_ALL EXCLUDE_FROM_ALL
GIT_REPOSITORY ${UTFCPP_REPO} GIT_REPOSITORY ${UTFCPP_REPO}
GIT_TAG v4.0.1 GIT_TAG v4.0.6
GIT_SHALLOW TRUE GIT_SHALLOW TRUE
) )
set(UTF8_TESTS OFF CACHE BOOL "" FORCE) set(UTF8_TESTS OFF CACHE BOOL "" FORCE)

View File

@@ -6,7 +6,7 @@
#pragma once #pragma once
#include <magic_enum.hpp> #include <magic_enum/magic_enum.hpp>
namespace OpenVulkano::AR namespace OpenVulkano::AR
{ {

View File

@@ -6,7 +6,7 @@
#pragma once #pragma once
#include <magic_enum.hpp> #include <magic_enum/magic_enum.hpp>
namespace OpenVulkano::AR namespace OpenVulkano::AR
{ {

View File

@@ -6,7 +6,7 @@
#pragma once #pragma once
#include <magic_enum.hpp> #include <magic_enum/magic_enum.hpp>
namespace OpenVulkano::AR namespace OpenVulkano::AR
{ {

View File

@@ -6,7 +6,7 @@
#pragma once #pragma once
#include <magic_enum.hpp> #include <magic_enum/magic_enum.hpp>
#include <string> #include <string>
namespace OpenVulkano namespace OpenVulkano

View File

@@ -9,6 +9,7 @@
#include "Base/Utils.hpp" #include "Base/Utils.hpp"
#include <unordered_map> #include <unordered_map>
#include <regex> #include <regex>
#include <fstream>
namespace fs = std::filesystem; namespace fs = std::filesystem;

View File

@@ -8,7 +8,7 @@
#include <dds.hpp> #include <dds.hpp>
#include <fmt/format.h> #include <fmt/format.h>
#include <magic_enum.hpp> #include <magic_enum/magic_enum.hpp>
#include <unordered_map> #include <unordered_map>

View File

@@ -11,7 +11,7 @@
#include <sstream> #include <sstream>
#include <regex> #include <regex>
#include <iomanip> #include <iomanip>
#include <magic_enum.hpp> #include <magic_enum/magic_enum.hpp>
namespace OpenVulkano namespace OpenVulkano
{ {

View File

@@ -6,7 +6,7 @@
#include "DataFormat.hpp" #include "DataFormat.hpp"
#include "Base/Logger.hpp" #include "Base/Logger.hpp"
#include <magic_enum.hpp> #include <magic_enum/magic_enum.hpp>
#include "Math/Math.hpp" #include "Math/Math.hpp"
namespace OpenVulkano namespace OpenVulkano

View File

@@ -8,7 +8,7 @@
#include "Scene/Geometry.hpp" #include "Scene/Geometry.hpp"
#include "Scene/Shader/Shader.hpp" #include "Scene/Shader/Shader.hpp"
#include "Base/Logger.hpp" #include "Base/Logger.hpp"
#include <magic_enum.hpp> #include <magic_enum/magic_enum.hpp>
#include <stdexcept> #include <stdexcept>
#include <cassert> #include <cassert>

View File

@@ -6,7 +6,7 @@
#pragma once #pragma once
#include <magic_enum.hpp> #include <magic_enum/magic_enum.hpp>
namespace OpenVulkano::Scene namespace OpenVulkano::Scene
{ {

View File

@@ -7,7 +7,7 @@
#pragma once #pragma once
#include "Scene/DataFormat.hpp" #include "Scene/DataFormat.hpp"
#include <magic_enum.hpp> #include <magic_enum/magic_enum.hpp>
#include <cinttypes> #include <cinttypes>
#include <string_view> #include <string_view>

View File

@@ -7,6 +7,8 @@
#include "ValidationLayer.hpp" #include "ValidationLayer.hpp"
#include "Base/Logger.hpp" #include "Base/Logger.hpp"
#include <list> #include <list>
#include <fmt/format.h>
#include <fmt/ranges.h>
//#define RENDER_DOC //#define RENDER_DOC