mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-27 18:31:15 +08:00
[boost] fix boost-mpi dependency (#20681)
* [boost] fix #20676 * update version
This commit is contained in:
parent
fa55dc6197
commit
1f5e8e4e9b
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "boost",
|
"name": "boost",
|
||||||
"version": "1.77.0",
|
"version": "1.77.0",
|
||||||
"port-version": 1,
|
"port-version": 2,
|
||||||
"description": "Peer-reviewed portable C++ source libraries",
|
"description": "Peer-reviewed portable C++ source libraries",
|
||||||
"homepage": "https://boost.org",
|
"homepage": "https://boost.org",
|
||||||
"dependencies": [
|
"dependencies": [
|
||||||
@ -137,7 +137,6 @@
|
|||||||
},
|
},
|
||||||
"boost-program-options",
|
"boost-program-options",
|
||||||
"boost-property-map",
|
"boost-property-map",
|
||||||
"boost-property-map-parallel",
|
|
||||||
"boost-property-tree",
|
"boost-property-tree",
|
||||||
"boost-proto",
|
"boost-proto",
|
||||||
"boost-ptr-container",
|
"boost-ptr-container",
|
||||||
@ -202,7 +201,8 @@
|
|||||||
"description": "Build with MPI support",
|
"description": "Build with MPI support",
|
||||||
"dependencies": [
|
"dependencies": [
|
||||||
"boost-graph-parallel",
|
"boost-graph-parallel",
|
||||||
"boost-mpi"
|
"boost-mpi",
|
||||||
|
"boost-property-map-parallel"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -24,7 +24,7 @@ else {
|
|||||||
# Clear this array when moving to a new boost version
|
# Clear this array when moving to a new boost version
|
||||||
$portVersions = @{
|
$portVersions = @{
|
||||||
#e.g. "boost-asio" = 1;
|
#e.g. "boost-asio" = 1;
|
||||||
"boost" = 1;
|
"boost" = 2;
|
||||||
"boost-config" = 2;
|
"boost-config" = 2;
|
||||||
"boost-gil" = 1;
|
"boost-gil" = 1;
|
||||||
"boost-iostreams" = 1;
|
"boost-iostreams" = 1;
|
||||||
@ -39,7 +39,7 @@ $portData = @{
|
|||||||
"features" = @{
|
"features" = @{
|
||||||
"mpi" = @{
|
"mpi" = @{
|
||||||
"description" = "Build with MPI support";
|
"description" = "Build with MPI support";
|
||||||
"dependencies" = @("boost-mpi", "boost-graph-parallel");
|
"dependencies" = @("boost-mpi", "boost-graph-parallel", "boost-property-map-parallel");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -1,5 +1,10 @@
|
|||||||
{
|
{
|
||||||
"versions": [
|
"versions": [
|
||||||
|
{
|
||||||
|
"git-tree": "19bdc0542dd287e39768144ba2719723a7818750",
|
||||||
|
"version": "1.77.0",
|
||||||
|
"port-version": 2
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"git-tree": "5fe225d8d76e70968014f7ddab050d7e520709e6",
|
"git-tree": "5fe225d8d76e70968014f7ddab050d7e520709e6",
|
||||||
"version": "1.77.0",
|
"version": "1.77.0",
|
||||||
|
@ -506,7 +506,7 @@
|
|||||||
},
|
},
|
||||||
"boost": {
|
"boost": {
|
||||||
"baseline": "1.77.0",
|
"baseline": "1.77.0",
|
||||||
"port-version": 1
|
"port-version": 2
|
||||||
},
|
},
|
||||||
"boost-accumulators": {
|
"boost-accumulators": {
|
||||||
"baseline": "1.77.0",
|
"baseline": "1.77.0",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user