vcpkg/ports/folly/vcpkg.json
Billy O'Neal 6e8f8e3a83
[folly] Remove vcpkg_fail_port_install. (#22745)
* [folly] Remove vcpkg_fail_port_install.

vcpkg.json was missing the uwp skip but otherwise agreed. There is no ci.baseline.txt impact because:

     Error: libevent[core] is only supported on '!uwp'

In support of https://github.com/microsoft/vcpkg/pull/21502

* Give up trying to prove that the support expression is correct and just follow what portfile.cmake says.

* Fix brain fart @JackBoosY found.
2022-01-24 12:54:09 -08:00

70 lines
1.5 KiB
JSON

{
"name": "folly",
"version-string": "2021.06.14.00",
"port-version": 4,
"description": "An open-source C++ library developed and used at Facebook. The library is UNSTABLE on Windows",
"homepage": "https://github.com/facebook/folly",
"supports": "(windows & x64 & !uwp) | (!windows & (x64 | arm64))",
"dependencies": [
"boost-chrono",
"boost-context",
"boost-conversion",
"boost-crc",
"boost-date-time",
"boost-filesystem",
"boost-multi-index",
"boost-program-options",
"boost-regex",
"boost-smart-ptr",
"boost-system",
"boost-thread",
"double-conversion",
"fmt",
"gflags",
"glog",
"libevent",
"openssl"
],
"default-features": [
"zlib"
],
"features": {
"bzip2": {
"description": "Support bzip2 for compression",
"dependencies": [
"bzip2"
]
},
"lz4": {
"description": "Support lz4 for compression",
"dependencies": [
"lz4"
]
},
"lzma": {
"description": "Support LZMA for compression",
"dependencies": [
"liblzma"
]
},
"snappy": {
"description": "Support Snappy for compression",
"dependencies": [
"snappy"
]
},
"zlib": {
"description": "Support zlib for compression",
"dependencies": [
"zlib"
]
},
"zstd": {
"description": "Support zstd for compression",
"dependencies": [
"zstd"
]
}
}
}