mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 17:51:47 +08:00
cf48528dff
* [quickcpplib] Properly delimit path option * [outcome] Prevent buildsystem from enabling concepts pre cxx20 * [llfio] Update port to 2022-09-18 - Disable OpenSSL support until someone properly integrates it. * [llfio] Disable buildsystem compiler introspection The buildsystem tries to enable concepts and coroutines via non standard compiler flags on earlier C++ versions which is exactly the opposite of what our polyfill features warrant. * Add versions to database
62 lines
1.4 KiB
JSON
62 lines
1.4 KiB
JSON
{
|
|
"name": "outcome",
|
|
"version": "2.2.4",
|
|
"port-version": 1,
|
|
"maintainers": [
|
|
"Niall Douglas <s_github@nedprod.com>",
|
|
"Henrik Gaßmann <henrik@gassmann.onl>"
|
|
],
|
|
"description": "Provides very lightweight outcome<T> and result<T> (non-Boost edition)",
|
|
"homepage": "https://github.com/ned14/outcome",
|
|
"license": "Apache-2.0 OR BSL-1.0",
|
|
"supports": "!uwp",
|
|
"dependencies": [
|
|
"ned14-internal-quickcpplib",
|
|
"status-code",
|
|
{
|
|
"name": "vcpkg-cmake",
|
|
"host": true
|
|
},
|
|
{
|
|
"name": "vcpkg-cmake-config",
|
|
"host": true
|
|
}
|
|
],
|
|
"features": {
|
|
"polyfill-cxx17": {
|
|
"description": "Polyfill C++17 entities",
|
|
"dependencies": [
|
|
{
|
|
"name": "ned14-internal-quickcpplib",
|
|
"default-features": false,
|
|
"features": [
|
|
"polyfill-cxx17"
|
|
]
|
|
},
|
|
{
|
|
"name": "outcome",
|
|
"default-features": false,
|
|
"features": [
|
|
"polyfill-cxx20"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"polyfill-cxx20": {
|
|
"description": "Polyfill C++20 entities",
|
|
"dependencies": [
|
|
{
|
|
"name": "ned14-internal-quickcpplib",
|
|
"default-features": false,
|
|
"features": [
|
|
"polyfill-cxx20"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"run-tests": {
|
|
"description": "Build and run the dependency validation tests"
|
|
}
|
|
}
|
|
}
|