Skip to content

Commit e1ac508

Browse files
committed
updating nlohmann_json to v3.12.0.
1 parent 6e8adb4 commit e1ac508

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

attachments/CMake/Findnlohmann_json.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ if(NOT nlohmann_json_INCLUDE_DIR)
4747
FetchContent_Declare(
4848
nlohmann_json
4949
GIT_REPOSITORY https://github.com/nlohmann/json.git
50-
GIT_TAG v3.11.2 # Use a specific tag for stability
50+
GIT_TAG v3.12.0 # Use a specific tag for stability
5151
)
5252

5353
# Set policy to suppress the deprecation warning

attachments/CMake/Findtinygltf.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@
1616
find_package(nlohmann_json QUIET)
1717
if(NOT nlohmann_json_FOUND)
1818
include(FetchContent)
19-
message(STATUS "nlohmann_json not found, fetching from GitHub...")
19+
message(STATUS "nlohmann_json not found, fetching v3.12.0 from GitHub...")
2020
FetchContent_Declare(
2121
nlohmann_json
2222
GIT_REPOSITORY https://github.com/nlohmann/json.git
23-
GIT_TAG v3.11.2 # Use a specific tag for stability
23+
GIT_TAG v3.12.0 # Use a specific tag for stability
2424
)
2525
FetchContent_MakeAvailable(nlohmann_json)
2626
endif()

0 commit comments

Comments
 (0)