mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-18 16:47:50 +08:00
63d9dcdd7e
Fixes #37189 - [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. - [x] The "supports" clause reflects platforms that may be fixed by this new version. - [x] Any fixed [CI baseline](https://github.com/microsoft/vcpkg/blob/master/scripts/ci.baseline.txt) entries are removed from that file. - [x] 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.
75 lines
1.4 KiB
JSON
75 lines
1.4 KiB
JSON
{
|
|
"name": "symengine",
|
|
"version": "0.11.2",
|
|
"port-version": 1,
|
|
"description": "SymEngine is a fast symbolic manipulation library",
|
|
"homepage": "https://github.com/symengine/symengine",
|
|
"license": "BSD-3-Clause",
|
|
"supports": "!uwp",
|
|
"dependencies": [
|
|
"boost-math",
|
|
"boost-random",
|
|
{
|
|
"name": "symengine",
|
|
"default-features": false,
|
|
"features": [
|
|
"integer-class-flint"
|
|
]
|
|
},
|
|
{
|
|
"name": "vcpkg-cmake",
|
|
"host": true
|
|
},
|
|
{
|
|
"name": "vcpkg-cmake-config",
|
|
"host": true
|
|
}
|
|
],
|
|
"default-features": [
|
|
"arb",
|
|
"llvm",
|
|
"mpfr"
|
|
],
|
|
"features": {
|
|
"arb": {
|
|
"description": "Build with arb",
|
|
"dependencies": [
|
|
"arb"
|
|
]
|
|
},
|
|
"flint": {
|
|
"description": "Build with flint",
|
|
"dependencies": [
|
|
"flint"
|
|
]
|
|
},
|
|
"integer-class-flint": {
|
|
"description": "Use flint integer class",
|
|
"dependencies": [
|
|
"flint"
|
|
]
|
|
},
|
|
"llvm": {
|
|
"description": "Build with LLVM",
|
|
"dependencies": [
|
|
{
|
|
"name": "llvm",
|
|
"default-features": false
|
|
}
|
|
]
|
|
},
|
|
"mpfr": {
|
|
"description": "Build with mpfr",
|
|
"dependencies": [
|
|
"mpfr"
|
|
]
|
|
},
|
|
"tcmalloc": {
|
|
"description": "Build with tcmalloc",
|
|
"dependencies": [
|
|
"gperftools"
|
|
]
|
|
}
|
|
}
|
|
}
|