Skip to content

Commit 3a1efcb

Browse files
committed
fix: update vcpkg rev to the latest version
1 parent 95ecb4c commit 3a1efcb

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ include(${_project_options_SOURCE_DIR}/Index.cmake)
7777
# install vcpkg dependencies: - should be called before defining project()
7878
run_vcpkg(
7979
VCPKG_URL "https://github.com/microsoft/vcpkg.git"
80-
VCPKG_REV "6a3dd0874f153f8b375ec26210ea6d41dee3bb26"
80+
VCPKG_REV "10e052511428d6b0c7fcc63a139e8024bb146032"
8181
)
8282
8383
# Set the project name and language

docs/src/project_options_example.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ include(${_project_options_SOURCE_DIR}/Index.cmake)
3030
# install vcpkg dependencies: - should be called before defining project()
3131
run_vcpkg(
3232
VCPKG_URL "https://github.com/microsoft/vcpkg.git"
33-
VCPKG_REV "6a3dd0874f153f8b375ec26210ea6d41dee3bb26"
33+
VCPKG_REV "10e052511428d6b0c7fcc63a139e8024bb146032"
3434
ENABLE_VCPKG_UPDATE
3535
)
3636

src/Vcpkg.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ Or by specifying the options
156156
157157
run_vcpkg(
158158
VCPKG_URL "https://github.com/microsoft/vcpkg.git"
159-
VCPKG_REV "6a3dd0874f153f8b375ec26210ea6d41dee3bb26"
159+
VCPKG_REV "10e052511428d6b0c7fcc63a139e8024bb146032"
160160
ENABLE_VCPKG_UPDATE
161161
)
162162

tests/install/vcpkg.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json",
33
"name": "another-project",
44
"version-string": "0.1.0",
5-
"builtin-baseline": "6a3dd0874f153f8b375ec26210ea6d41dee3bb26",
5+
"builtin-baseline": "10e052511428d6b0c7fcc63a139e8024bb146032",
66
"dependencies": [
77
{
88
"name": "eigen3",

tests/myproj/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ if(ENABLE_CROSS_COMPILING)
1818
endif()
1919

2020
run_vcpkg(VCPKG_URL "https://github.com/microsoft/vcpkg.git" VCPKG_REV
21-
"6a3dd0874f153f8b375ec26210ea6d41dee3bb26" ENABLE_VCPKG_UPDATE
21+
"10e052511428d6b0c7fcc63a139e8024bb146032" ENABLE_VCPKG_UPDATE
2222
)
2323

2424
project(myproj VERSION 0.2.0 LANGUAGES CXX C)

tests/myproj/vcpkg.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json",
33
"name": "myproject",
44
"version-string": "0.1.0",
5-
"builtin-baseline": "6a3dd0874f153f8b375ec26210ea6d41dee3bb26",
5+
"builtin-baseline": "10e052511428d6b0c7fcc63a139e8024bb146032",
66
"dependencies": [
77
{
88
"name": "eigen3",

0 commit comments

Comments
 (0)