File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -9,31 +9,31 @@ function(myproject_setup_dependencies)
99 # already been provided to us by a parent project
1010
1111 if (NOT TARGET fmtlib::fmtlib)
12- cpmaddpackage ("gh:fmtlib/fmt#11 .1.4 " )
12+ cpmaddpackage ("gh:fmtlib/fmt#12 .1.0 " )
1313 endif ()
1414
1515 if (NOT TARGET spdlog::spdlog)
1616 cpmaddpackage (
1717 NAME
1818 spdlog
1919 VERSION
20- 1.15.2
20+ 1.17.0
2121 GITHUB_REPOSITORY
2222 "gabime/spdlog"
2323 OPTIONS
2424 "SPDLOG_FMT_EXTERNAL ON" )
2525 endif ()
2626
2727 if (NOT TARGET Catch2::Catch2WithMain)
28- cpmaddpackage ("gh:catchorg/Catch2@3.8.1 " )
28+ cpmaddpackage ("gh:catchorg/Catch2@3.12.0 " )
2929 endif ()
3030
3131 if (NOT TARGET CLI11::CLI11)
32- cpmaddpackage ("gh:CLIUtils/CLI11@2.5.0 " )
32+ cpmaddpackage ("gh:CLIUtils/CLI11@2.6.1 " )
3333 endif ()
3434
3535 if (NOT TARGET ftxui::screen)
36- cpmaddpackage ("gh:ArthurSonzogni/FTXUI@6.0.2 " )
36+ cpmaddpackage ("gh:ArthurSonzogni/FTXUI@6.1.9 " )
3737 endif ()
3838
3939 if (NOT TARGET tools::tools)
Original file line number Diff line number Diff line change 22#
33# SPDX-FileCopyrightText: Copyright (c) 2019-2023 Lars Melchior and contributors
44
5- set (CPM_DOWNLOAD_VERSION 0.40.8 )
6- set (CPM_HASH_SUM "78ba32abdf798bc616bab7c73aac32a17bbd7b06ad9e26a6add69de8f3ae4791 " )
5+ set (CPM_DOWNLOAD_VERSION 0.42.1 )
6+ set (CPM_HASH_SUM "f3a6dcc6a04ce9e7f51a127307fa4f699fb2bade357a8eb4c5b45df76e1dc6a5 " )
77
88if (CPM_SOURCE_CACHE)
99 set (CPM_DOWNLOAD_LOCATION "${CPM_SOURCE_CACHE} /cpm/CPM_${CPM_DOWNLOAD_VERSION} .cmake" )
Original file line number Diff line number Diff line change 11function (myproject_enable_coverage project_name )
22 if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU" OR CMAKE_CXX_COMPILER_ID MATCHES ".*Clang" )
3- target_compile_options (${project_name} INTERFACE --coverage -O0 - g )
3+ target_compile_options (${project_name} INTERFACE --coverage -g )
44 target_link_libraries (${project_name} INTERFACE --coverage )
55 endif ()
66endfunction ()
You can’t perform that action at this time.
0 commit comments