vcpkg/ports/mp-units/vcpkg.json
Jón Bjarni 9b9c16fa53
[mp-units] update to v2.1.1 (#38791)
Current version v2.1.0 cannot be compiled with gcc14, this minor version
fixes that
https://github.com/mpusz/mp-units/issues/575

- [x] Changes comply with the [maintainer
guide](https://github.com/microsoft/vcpkg-docs/blob/main/vcpkg/contributing/maintainer-guide.md).
- [x] SHA512s are updated for each updated download.
- [ ] The "supports" clause reflects platforms that may be fixed by this
new version.
- [ ] Any fixed [CI
baseline](https://github.com/microsoft/vcpkg/blob/master/scripts/ci.baseline.txt)
entries are removed from that file.
- [ ] Any patches that are no longer applied are deleted from the port's
directory.
- [x] The version database is fixed by rerunning `./vcpkg x-add-version
--all` and committing the result.
- [x] Only one version is added to each modified port's versions file.
2024-05-17 14:09:10 -07:00

42 lines
806 B
JSON

{
"name": "mp-units",
"version": "2.1.1",
"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": [
"use-libfmt"
],
"platform": "osx"
}
]
},
"use-libfmt": {
"description": "Use libfmt instead of std::format",
"dependencies": [
"fmt"
]
}
}
}