Skip to content

Commit

Permalink
fix: fix the vcpkg rev and baseline
Browse files Browse the repository at this point in the history
  • Loading branch information
aminya committed Jan 26, 2024
1 parent bd1c6c2 commit 2127074
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ include(${_project_options_SOURCE_DIR}/Index.cmake)
# install vcpkg dependencies: - should be called before defining project()
run_vcpkg(
VCPKG_URL "https://github.com/microsoft/vcpkg.git"
VCPKG_REV "3b213864579b6fa686e38715508f7cd41a50900f"
VCPKG_REV "6a3dd0874f153f8b375ec26210ea6d41dee3bb26"
)
# Set the project name and language
Expand Down
2 changes: 1 addition & 1 deletion docs/src/project_options_example.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ include(${_project_options_SOURCE_DIR}/Index.cmake)
# install vcpkg dependencies: - should be called before defining project()
run_vcpkg(
VCPKG_URL "https://github.com/microsoft/vcpkg.git"
VCPKG_REV "3b213864579b6fa686e38715508f7cd41a50900f"
VCPKG_REV "6a3dd0874f153f8b375ec26210ea6d41dee3bb26"
ENABLE_VCPKG_UPDATE
)
Expand Down
2 changes: 1 addition & 1 deletion src/Vcpkg.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ Or by specifying the options
run_vcpkg(
VCPKG_URL "https://github.com/microsoft/vcpkg.git"
VCPKG_REV "3b213864579b6fa686e38715508f7cd41a50900f"
VCPKG_REV "6a3dd0874f153f8b375ec26210ea6d41dee3bb26"
ENABLE_VCPKG_UPDATE
)
Expand Down
4 changes: 2 additions & 2 deletions tests/install/vcpkg.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json",
"name": "another-project",
"version-string": "0.1.0",
"builtin-baseline": "3b213864579b6fa686e38715508f7cd41a50900f",
"builtin-baseline": "6a3dd0874f153f8b375ec26210ea6d41dee3bb26",
"dependencies": [
{
"name": "eigen3",
"version>=": "3.4.0#2"
},
{
"name": "fmt",
"version>=": "10.2.1"
"version>=": "9.1.0#1"
}
]
}
4 changes: 2 additions & 2 deletions tests/myproj/vcpkg.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json",
"name": "myproject",
"version-string": "0.1.0",
"builtin-baseline": "3b213864579b6fa686e38715508f7cd41a50900f",
"builtin-baseline": "6a3dd0874f153f8b375ec26210ea6d41dee3bb26",
"dependencies": [
{
"name": "eigen3",
"version>=": "3.4.0#2"
},
{
"name": "fmt",
"version>=": "10.2.1"
"version>=": "9.1.0#1"
}
]
}

0 comments on commit 2127074

Please sign in to comment.