Skip to content

Commit e8d9925

Browse files
committed
fix: update vcpkg rev
1 parent 02346e2 commit e8d9925

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

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 "10e052511428d6b0c7fcc63a139e8024bb146032"
80+
VCPKG_REV "86a181505ac6460f98496a79abdee6a0f49905ec"
8181
)
8282
# Install conan dependencies: - should be called before defining project()
8383
run_conan()

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 "10e052511428d6b0c7fcc63a139e8024bb146032"
33+
VCPKG_REV "86a181505ac6460f98496a79abdee6a0f49905ec"
3434
)
3535
# Install conan dependencies: - should be called before defining project()
3636
run_conan()

src/Vcpkg.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ Or by specifying the options
170170
171171
run_vcpkg(
172172
VCPKG_URL "https://github.com/microsoft/vcpkg.git"
173-
VCPKG_REV "10e052511428d6b0c7fcc63a139e8024bb146032"
173+
VCPKG_REV "86a181505ac6460f98496a79abdee6a0f49905ec"
174174
ENABLE_VCPKG_UPDATE
175175
)
176176

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": "10e052511428d6b0c7fcc63a139e8024bb146032",
5+
"builtin-baseline": "86a181505ac6460f98496a79abdee6a0f49905ec",
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-
"10e052511428d6b0c7fcc63a139e8024bb146032" ENABLE_VCPKG_UPDATE
21+
"86a181505ac6460f98496a79abdee6a0f49905ec" ENABLE_VCPKG_UPDATE
2222
)
2323
run_conan()
2424

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": "10e052511428d6b0c7fcc63a139e8024bb146032",
5+
"builtin-baseline": "86a181505ac6460f98496a79abdee6a0f49905ec",
66
"dependencies": [
77
{
88
"name": "eigen3",

0 commit comments

Comments
 (0)