Skip to content

Commit 2127074

Browse files
committed
fix: fix the vcpkg rev and baseline
1 parent bd1c6c2 commit 2127074

5 files changed

Lines changed: 7 additions & 7 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 "3b213864579b6fa686e38715508f7cd41a50900f"
80+
VCPKG_REV "6a3dd0874f153f8b375ec26210ea6d41dee3bb26"
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 "3b213864579b6fa686e38715508f7cd41a50900f"
33+
VCPKG_REV "6a3dd0874f153f8b375ec26210ea6d41dee3bb26"
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 "3b213864579b6fa686e38715508f7cd41a50900f"
159+
VCPKG_REV "6a3dd0874f153f8b375ec26210ea6d41dee3bb26"
160160
ENABLE_VCPKG_UPDATE
161161
)
162162

tests/install/vcpkg.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
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": "3b213864579b6fa686e38715508f7cd41a50900f",
5+
"builtin-baseline": "6a3dd0874f153f8b375ec26210ea6d41dee3bb26",
66
"dependencies": [
77
{
88
"name": "eigen3",
99
"version>=": "3.4.0#2"
1010
},
1111
{
1212
"name": "fmt",
13-
"version>=": "10.2.1"
13+
"version>=": "9.1.0#1"
1414
}
1515
]
1616
}

tests/myproj/vcpkg.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
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": "3b213864579b6fa686e38715508f7cd41a50900f",
5+
"builtin-baseline": "6a3dd0874f153f8b375ec26210ea6d41dee3bb26",
66
"dependencies": [
77
{
88
"name": "eigen3",
99
"version>=": "3.4.0#2"
1010
},
1111
{
1212
"name": "fmt",
13-
"version>=": "10.2.1"
13+
"version>=": "9.1.0#1"
1414
}
1515
]
1616
}

0 commit comments

Comments
 (0)