Skip to content

Commit 19cd25d

Browse files
committed
Update dependencies at vcpkg.json
1 parent 4d0296b commit 19cd25d

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CMakeLists.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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)
1111
if(CMAKE_VERSION VERSION_GREATER_EQUAL "3.24.0")
1212
cmake_policy(SET CMP0135 NEW)
1313
endif()
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)

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,12 @@ test_release: release
3030

3131
test_install: release
3232

33-
coverage:
33+
coverage: gcovr.cfg
3434
ifeq ($(OS), Windows_NT)
3535
OpenCppCoverage.exe --export_type cobertura:coverage.xml --cover_children -- $(MAKE) test
3636
else
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
3940
endif
4041

vcpkg.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"dependencies": [
77
{
88
"name": "fmt",
9-
"version>=": "10.1.1"
9+
"version>=": "11.0.2#1"
1010
}
1111
],
1212
"features": {
@@ -15,7 +15,7 @@
1515
"dependencies": [
1616
{
1717
"name": "catch2",
18-
"version>=": "3.4.0"
18+
"version>=": "3.8.1"
1919
}
2020
]
2121
}

0 commit comments

Comments
 (0)