mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-28 12:31:36 +08:00
0cabd9b4bd
* Update mp-units V0.8.0 * Update database * Add range-v3 as dependency * Update database * Add fmt and ranges as features that can be turned off * Update database * Try setting fmt and range-v3 as default on osx * Update database * Remove name * Use feature names instead of dep names * Update database
49 lines
1004 B
JSON
49 lines
1004 B
JSON
{
|
|
"name": "mp-units",
|
|
"version": "0.8.0",
|
|
"description": "mp-units - A Units Library for C++",
|
|
"homepage": "https://github.com/mpusz/units",
|
|
"license": "MIT",
|
|
"dependencies": [
|
|
"gsl-lite",
|
|
{
|
|
"name": "vcpkg-cmake",
|
|
"host": true
|
|
},
|
|
{
|
|
"name": "vcpkg-cmake-config",
|
|
"host": true
|
|
}
|
|
],
|
|
"default-features": [
|
|
"default-features"
|
|
],
|
|
"features": {
|
|
"default-features": {
|
|
"description": "Platform specific default features",
|
|
"dependencies": [
|
|
{
|
|
"name": "mp-units",
|
|
"features": [
|
|
"install-range-v3",
|
|
"use-libfmt"
|
|
],
|
|
"platform": "osx"
|
|
}
|
|
]
|
|
},
|
|
"install-range-v3": {
|
|
"description": "Provide range-v3 for compilers not supporting std::ranges",
|
|
"dependencies": [
|
|
"range-v3"
|
|
]
|
|
},
|
|
"use-libfmt": {
|
|
"description": "Use libfmt instead of std::format",
|
|
"dependencies": [
|
|
"fmt"
|
|
]
|
|
}
|
|
}
|
|
}
|