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
EXCLUDE_FROM_ALL
GIT_REPOSITORY ${ASSIMP_REPO}
GIT_TAG v5.0.1
GIT_TAG v6.0.2
GIT_SHALLOW TRUE
)

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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