mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 20:59:55 +08:00
0fec1340eb
* [vcpkg docs] add docs for manifest files These are just for the maintainer docs, not user docs. * [vcpkg] EBNF-ify platform expression parsing this modifies nothing about what strings are accepted or rejected, it just moves stuff around. also adds tests. * [vcpkg docs] add manifest mode example * [wip] docs for augustin also fix tabs * [vcpkg manifest] switch to using maps for features * Apply suggestions from code review * un-experimentize format-manifest * flesh out the user manifest mode docs * CRs * billy CRs * final personal pass-thru
26 lines
552 B
JSON
26 lines
552 B
JSON
{
|
|
"name": "numcpp",
|
|
"version-string": "2.1.0",
|
|
"description": "C++ implementation of the Python Numpy library",
|
|
"homepage": "https://dpilger26.github.io/NumCpp",
|
|
"license": "MIT",
|
|
"dependencies": [
|
|
"boost-algorithm",
|
|
"boost-endian",
|
|
"boost-integer",
|
|
"boost-math",
|
|
"boost-predef",
|
|
"boost-random",
|
|
"boost-type-traits"
|
|
],
|
|
"features": {
|
|
"python": {
|
|
"description": "Interacting with python with pybind11 interface",
|
|
"dependencies": [
|
|
"boost-python",
|
|
"pybind11"
|
|
]
|
|
}
|
|
}
|
|
}
|