mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-27 12:49:44 +08:00
291b84e651
* [quickcpplib] Avoid deprecated helper functions * [quickcpplib] Update to version @0.0.0-cad832c8 fixup quickcpplib ref * [quickcpplib] Add cxx17 and cxx20 feature levels * [quickcpplib] Update port version information * [llfio] Update to version @2.0-20220112 * [llfio] Avoid deprecated helper functions * [llfio] Add cxx17 and cxx20 feature levels * [llfio] Support static linkage triplets * [llfio] Always install ntkernel-error-category ntkernel-error-category sources have been recorded as part of `headers.cmake` which are added to the library targets. Therefore cmake configure fails if they aren't available. * [llfio] Fix msvc crt linkage specification `quickcpplib` parses `CMAKE_MSVC_RUNTIME_LIBRARY` and cannot support the default crt linkage generator expression from vcpkg. Therefore we need to manually specify a valid option. * [llfio] Update port version information
58 lines
1.3 KiB
JSON
58 lines
1.3 KiB
JSON
{
|
|
"name": "llfio",
|
|
"version-string": "2.0-20220112",
|
|
"description": "P1031 low level file i/o and filesystem library for the C++ standard",
|
|
"homepage": "https://github.com/ned14/llfio",
|
|
"supports": "!uwp",
|
|
"dependencies": [
|
|
"outcome",
|
|
{
|
|
"name": "vcpkg-cmake",
|
|
"host": true
|
|
},
|
|
{
|
|
"name": "vcpkg-cmake-config",
|
|
"host": true
|
|
}
|
|
],
|
|
"features": {
|
|
"cxx17": {
|
|
"description": "Do not polyfill C++17 entities",
|
|
"dependencies": [
|
|
{
|
|
"name": "ned14-internal-quickcpplib",
|
|
"default-features": false,
|
|
"features": [
|
|
"cxx17"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"cxx20": {
|
|
"description": "Do not polyfill C++20 entities",
|
|
"dependencies": [
|
|
{
|
|
"name": "llfio",
|
|
"default-features": false,
|
|
"features": [
|
|
"cxx17"
|
|
]
|
|
},
|
|
{
|
|
"name": "ned14-internal-quickcpplib",
|
|
"default-features": false,
|
|
"features": [
|
|
"cxx20"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"run-tests": {
|
|
"description": "Build and run the dependency validation tests"
|
|
},
|
|
"status-code": {
|
|
"description": "Have LLFIO use SG14 `status_code` (proposed `std::error`) instead of `std::error_code`."
|
|
}
|
|
}
|
|
}
|