From f150bea49003d52da790ee91afd119f89b5e0f5e Mon Sep 17 00:00:00 2001 From: "George K. Thiruvathukal" Date: Tue, 16 Jul 2024 14:23:36 -0500 Subject: [PATCH 1/2] update CMakeLists.txt with new deps --- CMakeLists.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ba5cdd1..c888b90 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -21,7 +21,7 @@ include(FetchContent) FetchContent_Declare( fmt GIT_REPOSITORY https://github.com/fmtlib/fmt.git - GIT_TAG 8.1.1 + GIT_TAG 11.0.1 ) FetchContent_MakeAvailable(fmt) # UnoAPI:CMakeLists-fetchcontent:end @@ -31,21 +31,21 @@ option(SPDLOG_FMT_EXTERNAL "Use external fmt library instead of bundled" ON) FetchContent_Declare( spdlog GIT_REPOSITORY https://github.com/gabime/spdlog.git - GIT_TAG v1.9.2 + GIT_TAG v1.14.1 ) FetchContent_MakeAvailable(spdlog) FetchContent_Declare( scnlib GIT_REPOSITORY https://github.com/eliaskosunen/scnlib.git - GIT_TAG v1.1.2 + GIT_TAG v3.0.1 ) FetchContent_MakeAvailable(scnlib) FetchContent_Declare( cli11 GIT_REPOSITORY https://github.com/CLIUtils/CLI11.git - GIT_TAG v2.1.2 + GIT_TAG v2.4.2 ) FetchContent_MakeAvailable(cli11) From 4745251189cc1aacedee7c5a5ec806f17112a758 Mon Sep 17 00:00:00 2001 From: "George K. Thiruvathukal" Date: Tue, 16 Jul 2024 14:48:05 -0500 Subject: [PATCH 2/2] revert to fmt 9.1 --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3a4c518..16352fa 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -21,7 +21,7 @@ include(FetchContent) FetchContent_Declare( fmt GIT_REPOSITORY https://github.com/fmtlib/fmt.git - GIT_TAG 11.0.1 + GIT_TAG 9.1.0 ) FetchContent_MakeAvailable(fmt) # UnoAPI:CMakeLists-fetchcontent:end @@ -63,4 +63,4 @@ add_subdirectory(wordcloud) add_subdirectory(technical_analysis) add_subdirectory(bigmatrix) add_subdirectory(cipher) -add_subdirectory(transitive_closure) \ No newline at end of file +add_subdirectory(transitive_closure)