diff --git a/3rdParty/assimp/CMakeLists.txt b/3rdParty/assimp/CMakeLists.txt index 8875b28..7131fbe 100644 --- a/3rdParty/assimp/CMakeLists.txt +++ b/3rdParty/assimp/CMakeLists.txt @@ -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 ) diff --git a/3rdParty/catch2/CMakeLists.txt b/3rdParty/catch2/CMakeLists.txt index 78de218..59862df 100644 --- a/3rdParty/catch2/CMakeLists.txt +++ b/3rdParty/catch2/CMakeLists.txt @@ -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 ) diff --git a/3rdParty/fmt/CMakeLists.txt b/3rdParty/fmt/CMakeLists.txt index fa55fa2..5be42c5 100644 --- a/3rdParty/fmt/CMakeLists.txt +++ b/3rdParty/fmt/CMakeLists.txt @@ -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) diff --git a/3rdParty/glfw/CMakeLists.txt b/3rdParty/glfw/CMakeLists.txt index 632e74e..9df1fa8 100644 --- a/3rdParty/glfw/CMakeLists.txt +++ b/3rdParty/glfw/CMakeLists.txt @@ -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) diff --git a/3rdParty/magic-enum/CMakeLists.txt b/3rdParty/magic-enum/CMakeLists.txt index 8345cf8..632eddd 100644 --- a/3rdParty/magic-enum/CMakeLists.txt +++ b/3rdParty/magic-enum/CMakeLists.txt @@ -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) \ No newline at end of file diff --git a/3rdParty/pugixml/CMakeLists.txt b/3rdParty/pugixml/CMakeLists.txt index c3a1b60..f559b14 100644 --- a/3rdParty/pugixml/CMakeLists.txt +++ b/3rdParty/pugixml/CMakeLists.txt @@ -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) diff --git a/3rdParty/rapidyaml/CMakeLists.txt b/3rdParty/rapidyaml/CMakeLists.txt index 18cc3f0..0ff1d0a 100644 --- a/3rdParty/rapidyaml/CMakeLists.txt +++ b/3rdParty/rapidyaml/CMakeLists.txt @@ -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) \ No newline at end of file diff --git a/3rdParty/spdlog/CMakeLists.txt b/3rdParty/spdlog/CMakeLists.txt index 2e7ab6d..d9e518a 100644 --- a/3rdParty/spdlog/CMakeLists.txt +++ b/3rdParty/spdlog/CMakeLists.txt @@ -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) \ No newline at end of file diff --git a/3rdParty/stb/CMakeLists.txt b/3rdParty/stb/CMakeLists.txt index 4b3b421..cd0b747 100644 --- a/3rdParty/stb/CMakeLists.txt +++ b/3rdParty/stb/CMakeLists.txt @@ -9,6 +9,7 @@ FetchContent_Declare( EXCLUDE_FROM_ALL GIT_REPOSITORY ${STB_REPO} GIT_SHALLOW TRUE + GIT_TAG master ) FetchContent_MakeAvailable(stb) diff --git a/3rdParty/tracy/CMakeLists.txt b/3rdParty/tracy/CMakeLists.txt index 89fa0ea..644f2ef 100644 --- a/3rdParty/tracy/CMakeLists.txt +++ b/3rdParty/tracy/CMakeLists.txt @@ -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 ) diff --git a/3rdParty/utfcpp/CMakeLists.txt b/3rdParty/utfcpp/CMakeLists.txt index 991767f..f6501c1 100644 --- a/3rdParty/utfcpp/CMakeLists.txt +++ b/3rdParty/utfcpp/CMakeLists.txt @@ -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) diff --git a/openVulkanoCpp/AR/ArDepthFormat.hpp b/openVulkanoCpp/AR/ArDepthFormat.hpp index b332c66..bb1ed16 100644 --- a/openVulkanoCpp/AR/ArDepthFormat.hpp +++ b/openVulkanoCpp/AR/ArDepthFormat.hpp @@ -6,7 +6,7 @@ #pragma once -#include +#include namespace OpenVulkano::AR { diff --git a/openVulkanoCpp/AR/ArTrackingState.hpp b/openVulkanoCpp/AR/ArTrackingState.hpp index eb6819e..d0f24c8 100644 --- a/openVulkanoCpp/AR/ArTrackingState.hpp +++ b/openVulkanoCpp/AR/ArTrackingState.hpp @@ -6,7 +6,7 @@ #pragma once -#include +#include namespace OpenVulkano::AR { @@ -116,4 +116,4 @@ namespace OpenVulkano::AR private: State m_state; }; -} \ No newline at end of file +} diff --git a/openVulkanoCpp/AR/ArType.hpp b/openVulkanoCpp/AR/ArType.hpp index dafab85..c7c31be 100644 --- a/openVulkanoCpp/AR/ArType.hpp +++ b/openVulkanoCpp/AR/ArType.hpp @@ -6,7 +6,7 @@ #pragma once -#include +#include namespace OpenVulkano::AR { @@ -55,4 +55,4 @@ namespace OpenVulkano::AR private: Type m_type; }; -} \ No newline at end of file +} diff --git a/openVulkanoCpp/Base/PlatformEnums.hpp b/openVulkanoCpp/Base/PlatformEnums.hpp index 3a9cc3d..c02de75 100644 --- a/openVulkanoCpp/Base/PlatformEnums.hpp +++ b/openVulkanoCpp/Base/PlatformEnums.hpp @@ -6,7 +6,7 @@ #pragma once -#include +#include #include namespace OpenVulkano @@ -108,4 +108,4 @@ namespace OpenVulkano private: OS os; }; -} \ No newline at end of file +} diff --git a/openVulkanoCpp/IO/FsUtils.cpp b/openVulkanoCpp/IO/FsUtils.cpp index c16cf13..329a8b0 100644 --- a/openVulkanoCpp/IO/FsUtils.cpp +++ b/openVulkanoCpp/IO/FsUtils.cpp @@ -9,6 +9,7 @@ #include "Base/Utils.hpp" #include #include +#include namespace fs = std::filesystem; diff --git a/openVulkanoCpp/Image/ImageLoaderDds.cpp b/openVulkanoCpp/Image/ImageLoaderDds.cpp index e0bee3f..7a8f5dd 100644 --- a/openVulkanoCpp/Image/ImageLoaderDds.cpp +++ b/openVulkanoCpp/Image/ImageLoaderDds.cpp @@ -8,7 +8,7 @@ #include #include -#include +#include #include diff --git a/openVulkanoCpp/Math/ByteSize.hpp b/openVulkanoCpp/Math/ByteSize.hpp index 4ddf0fc..f9e8dc0 100644 --- a/openVulkanoCpp/Math/ByteSize.hpp +++ b/openVulkanoCpp/Math/ByteSize.hpp @@ -11,7 +11,7 @@ #include #include #include -#include +#include namespace OpenVulkano { diff --git a/openVulkanoCpp/Scene/DataFormat.cpp b/openVulkanoCpp/Scene/DataFormat.cpp index fb1185b..ba4dc91 100644 --- a/openVulkanoCpp/Scene/DataFormat.cpp +++ b/openVulkanoCpp/Scene/DataFormat.cpp @@ -6,7 +6,7 @@ #include "DataFormat.hpp" #include "Base/Logger.hpp" -#include +#include #include "Math/Math.hpp" namespace OpenVulkano diff --git a/openVulkanoCpp/Scene/SimpleDrawable.cpp b/openVulkanoCpp/Scene/SimpleDrawable.cpp index 68fe4cc..5f7cbb7 100644 --- a/openVulkanoCpp/Scene/SimpleDrawable.cpp +++ b/openVulkanoCpp/Scene/SimpleDrawable.cpp @@ -8,7 +8,7 @@ #include "Scene/Geometry.hpp" #include "Scene/Shader/Shader.hpp" #include "Base/Logger.hpp" -#include +#include #include #include @@ -97,4 +97,4 @@ namespace OpenVulkano::Scene } return {}; } -} \ No newline at end of file +} diff --git a/openVulkanoCpp/Scene/Text/FontAtlasType.hpp b/openVulkanoCpp/Scene/Text/FontAtlasType.hpp index 33d9323..79341c2 100644 --- a/openVulkanoCpp/Scene/Text/FontAtlasType.hpp +++ b/openVulkanoCpp/Scene/Text/FontAtlasType.hpp @@ -6,7 +6,7 @@ #pragma once -#include +#include namespace OpenVulkano::Scene { @@ -52,4 +52,4 @@ namespace OpenVulkano::Scene private: Type m_type; }; -} \ No newline at end of file +} diff --git a/openVulkanoCpp/Scene/Text/SubpixelLayout.hpp b/openVulkanoCpp/Scene/Text/SubpixelLayout.hpp index 9771508..252e428 100644 --- a/openVulkanoCpp/Scene/Text/SubpixelLayout.hpp +++ b/openVulkanoCpp/Scene/Text/SubpixelLayout.hpp @@ -7,7 +7,7 @@ #pragma once #include "Scene/DataFormat.hpp" -#include +#include #include #include diff --git a/openVulkanoCpp/Vulkan/Debuging/ValidationLayer.cpp b/openVulkanoCpp/Vulkan/Debuging/ValidationLayer.cpp index fe6d7a7..30d0c72 100644 --- a/openVulkanoCpp/Vulkan/Debuging/ValidationLayer.cpp +++ b/openVulkanoCpp/Vulkan/Debuging/ValidationLayer.cpp @@ -7,6 +7,8 @@ #include "ValidationLayer.hpp" #include "Base/Logger.hpp" #include +#include +#include //#define RENDER_DOC @@ -113,4 +115,4 @@ namespace OpenVulkano::Vulkan { instance.destroyDebugReportCallbackEXT(msgCallback, nullptr, dispatchLoaderDynamic); } -} \ No newline at end of file +}