Skip to content

Commit

Permalink
Upgrade all dependencies and fix option mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinHelmut committed Mar 14, 2024
1 parent 5b800ae commit 5cb4b81
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 3 additions & 3 deletions vendor/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,20 @@ include(FetchContent)
FetchContent_Declare(
doctest
GIT_REPOSITORY "https://github.com/onqtam/doctest.git"
GIT_TAG v2.4.10
GIT_TAG v2.4.11
)
add_subdirectory(doctest)

FetchContent_Declare(
fmt
GIT_REPOSITORY "https://github.com/fmtlib/fmt.git"
GIT_TAG 9.1.0
GIT_TAG 10.2.1
)
add_subdirectory(fmt)

FetchContent_Declare(
spdlog
GIT_REPOSITORY "https://github.com/gabime/spdlog.git"
GIT_TAG v1.11.0
GIT_TAG v1.13.0
)
add_subdirectory(spdlog)
2 changes: 2 additions & 0 deletions vendor/fmt/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
message(STATUS "Fetching fmt ...")

option(FMT_INSTALL "Enable installation for the {fmt} project." OFF)

FetchContent_MakeAvailable(fmt)
2 changes: 1 addition & 1 deletion vendor/spdlog/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
message(STATUS "Fetching spdlog ...")

set(SPDLOG_FMT_EXTERNAL "ON")
option(SPDLOG_FMT_EXTERNAL "ON")

FetchContent_MakeAvailable(spdlog)

0 comments on commit 5cb4b81

Please sign in to comment.