Skip to content

Commit

Permalink
Updated Corrade and Magnum to latest. (#2408)
Browse files Browse the repository at this point in the history
  • Loading branch information
mosra authored Jun 11, 2024
1 parent d808de4 commit 8961cb0
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
4 changes: 3 additions & 1 deletion src/cmake/FindGLFW.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,9 @@ if(CORRADE_TARGET_WINDOWS)
set(_GLFW_LIBRARY_PATH_SUFFIX lib-vc2017)
elseif(MSVC_VERSION VERSION_LESS 1930)
set(_GLFW_LIBRARY_PATH_SUFFIX lib-vc2019)
elseif(MSVC_VERSION VERSION_LESS 1940)
# MSVC 2022 17.10 overflowed the 1930 range to 1940, so assume a
# hypothetical MSVC 2025 will start with 1950.
elseif(MSVC_VERSION VERSION_LESS 1950)
set(_GLFW_LIBRARY_PATH_SUFFIX lib-vc2022)
else()
message(FATAL_ERROR "Unsupported MSVC version")
Expand Down
2 changes: 1 addition & 1 deletion src/deps/corrade
Submodule corrade updated 37 files
+6 −2 doc/corrade-changelog.dox
+1 −0 doc/corrade-singles.dox
+1 −0 doc/namespaces.dox
+107 −1 doc/snippets/Containers.cpp
+5 −2 package/ci/appveyor.yml
+1 −0 src/Corrade/Containers/CMakeLists.txt
+2 −0 src/Corrade/Containers/Containers.h
+697 −0 src/Corrade/Containers/Function.h
+2 −0 src/Corrade/Containers/GrowableArray.h
+27 −8 src/Corrade/Containers/Reference.h
+69 −21 src/Corrade/Containers/StaticArray.h
+4 −0 src/Corrade/Containers/String.cpp
+7 −0 src/Corrade/Containers/String.h
+491 −177 src/Corrade/Containers/StringView.cpp
+35 −3 src/Corrade/Containers/StringView.h
+1 −1 src/Corrade/Containers/Test/BitArrayViewBenchmark.cpp
+1 −1 src/Corrade/Containers/Test/BitArrayViewTest.cpp
+3 −1 src/Corrade/Containers/Test/BitArrayViewTest.h
+2 −0 src/Corrade/Containers/Test/CMakeLists.txt
+326 −0 src/Corrade/Containers/Test/FunctionBenchmark.cpp
+2,498 −0 src/Corrade/Containers/Test/FunctionTest.cpp
+15 −0 src/Corrade/Containers/Test/ReferenceTest.cpp
+75 −0 src/Corrade/Containers/Test/StaticArrayTest.cpp
+5 −6 src/Corrade/Containers/Test/StridedArrayViewTest.cpp
+15 −0 src/Corrade/Containers/Test/StringTest.cpp
+391 −197 src/Corrade/Containers/Test/StringViewBenchmark.cpp
+393 −22 src/Corrade/Containers/Test/StringViewTest.cpp
+641 −0 src/Corrade/Containers/Test/StringViewTest.h
+2 −2 src/Corrade/Utility/Path.h
+587 −10 src/Corrade/Utility/String.cpp
+26 −5 src/Corrade/Utility/String.h
+705 −204 src/Corrade/Utility/Test/StringBenchmark.cpp
+822 −77 src/Corrade/Utility/Test/StringTest.cpp
+397 −0 src/Corrade/Utility/Test/StringTest.h
+112 −0 src/singles/CorradeFunction.h
+1 −0 src/singles/generate.sh
+1 −1 toolchains

0 comments on commit 8961cb0

Please sign in to comment.