Skip to content

Commit bad300d

Browse files
authored
chore(deps): refresh vendored deps and bump to v3.8.2 (#133)
1 parent cebe30f commit bad300d

9 files changed

Lines changed: 13 additions & 13 deletions

File tree

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
cmake_minimum_required(VERSION 3.25)
1+
cmake_minimum_required(VERSION 3.28)
22

3-
project(DetourModKit VERSION 3.8.1 LANGUAGES CXX)
3+
project(DetourModKit VERSION 3.8.2 LANGUAGES CXX)
44

55
# GNUInstallDirs defines CMAKE_INSTALL_LIBDIR / BINDIR / INCLUDEDIR / DOCDIR. It must be included before any
66
# install() rule reads those variables; otherwise they expand to empty and components land at the install-prefix

CMakePresets.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"version": 6,
33
"cmakeMinimumRequired": {
44
"major": 3,
5-
"minor": 25,
5+
"minor": 28,
66
"patch": 0
77
},
88
"configurePresets": [

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -646,7 +646,7 @@ This method is ideal for active development and ensures you always have the late
646646
2. **Configure your CMakeLists.txt:**
647647

648648
```cmake
649-
cmake_minimum_required(VERSION 3.25)
649+
cmake_minimum_required(VERSION 3.28)
650650
project(MyMod VERSION 1.0.0 LANGUAGES CXX)
651651
652652
set(CMAKE_CXX_STANDARD 23)

docs/hot-reload/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,7 @@ my_mod/
470470
**CMakeLists.txt:**
471471

472472
```cmake
473-
cmake_minimum_required(VERSION 3.25)
473+
cmake_minimum_required(VERSION 3.28)
474474
project(MyMod VERSION 1.0.0 LANGUAGES CXX)
475475
476476
set(CMAKE_CXX_STANDARD 23)

external/DirectXMath

Submodule DirectXMath updated 50 files

tests/CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
cmake_minimum_required(VERSION 3.25)
1+
cmake_minimum_required(VERSION 3.28)
22

33
if(DMK_BUILD_TESTS)
4-
# Prefer a system/pre-provisioned GoogleTest (>= 1.14) so an offline or CI machine with a system GTest skips the
4+
# Prefer a system/pre-provisioned GoogleTest (>= 1.17) so an offline or CI machine with a system GTest skips the
55
# network fetch; otherwise fall back to a pinned FetchContent clone. Both paths provide the GTest::gtest_main
66
# target the tests link against, so no link-line change is needed for either.
7-
find_package(GTest 1.14 QUIET)
7+
find_package(GTest 1.17 QUIET)
88

99
if(NOT GTest_FOUND OR NOT TARGET GTest::gtest_main)
1010
include(FetchContent)
1111
FetchContent_Declare(
1212
googletest
1313
GIT_REPOSITORY https://github.com/google/googletest.git
14-
GIT_TAG f8d7d77c06936315286eb55f8de22cd23c188571 # v1.14.0 release commit
14+
GIT_TAG 52eb8108c5bdec04579160ae17225d66034bd723 # v1.17.0 release commit
1515
)
1616

1717
# For Windows: Prevent overriding the parent project's compiler/linker settings

tests/test_version.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace
1414
// automatically. The release workflow separately guards that CMakeLists.txt project(VERSION) matches the tag.
1515
EXPECT_EQ(DMK_VERSION_MAJOR, 3);
1616
EXPECT_EQ(DMK_VERSION_MINOR, 8);
17-
EXPECT_EQ(DMK_VERSION_PATCH, 1);
17+
EXPECT_EQ(DMK_VERSION_PATCH, 2);
1818
}
1919

2020
TEST(VersionTest, VersionStringMatchesMacros)

0 commit comments

Comments
 (0)