File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed
Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 1- cmake_minimum_required (VERSION 3.21...3.31 )
1+ cmake_minimum_required (VERSION 3.21...4.0 )
22
33# set a default CXX standard for the tools and targets that do not specify them.
44# If commented, the latest supported standard for your compiler is automatically set.
@@ -11,6 +11,9 @@ include(FetchContent)
1111if (CMAKE_VERSION VERSION_GREATER_EQUAL "3.24.0" )
1212 cmake_policy (SET CMP0135 NEW)
1313endif ()
14+ if (CMAKE_VERSION VERSION_GREATER_EQUAL "3.31.0" )
15+ cmake_policy (SET CMP0177 NEW)
16+ endif ()
1417
1518# Add project_options from https://github.com/aminya/project_options
1619# Change the version in the following URL to update the package (watch the releases of the repository for future updates)
Original file line number Diff line number Diff line change @@ -30,11 +30,12 @@ test_release: release
3030
3131test_install : release
3232
33- coverage :
33+ coverage : gcovr.cfg
3434ifeq ($(OS ) , Windows_NT)
3535 OpenCppCoverage.exe --export_type cobertura:coverage.xml --cover_children -- $(MAKE) test
3636else
3737 $(MAKE) test
38+ mkdir -p build/coverage
3839 gcovr -j 1 --delete --root ./ --print-summary --xml-pretty --xml coverage.xml ./build --gcov-executable gcov
3940endif
4041
Original file line number Diff line number Diff line change 66 "dependencies" : [
77 {
88 "name" : " fmt" ,
9- "version>=" : " 10.1. 1"
9+ "version>=" : " 11.0.2# 1"
1010 }
1111 ],
1212 "features" : {
1515 "dependencies" : [
1616 {
1717 "name" : " catch2" ,
18- "version>=" : " 3.4.0 "
18+ "version>=" : " 3.8.1 "
1919 }
2020 ]
2121 }
You can’t perform that action at this time.
0 commit comments