vcpkg/ports/sentry-native/vcpkg.json
Kai Pastor 4b2725f6f4
[sentry-native] Add features 'backend' and 'transport' (#29047)
* [sentry-native] Features 'backend' and 'transport'

* Fix zlib removal
2023-01-23 16:25:17 -08:00

54 lines
1.3 KiB
JSON

{
"name": "sentry-native",
"version": "0.5.3",
"port-version": 2,
"description": "Sentry SDK for C, C++ and native applications.",
"homepage": "https://sentry.io/",
"license": "MIT",
"supports": "osx | (!arm & !uwp)",
"dependencies": [
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
],
"default-features": [
"backend",
"transport"
],
"features": {
"backend": {
"description": [
"Enables the platform-specific backend.",
"This feature does nothing for some platforms.",
"Cf. https://github.com/getsentry/sentry-native#compile-time-options"
],
"dependencies": [
{
"$comment": "zlib is used by the crashpad backend.",
"name": "zlib",
"platform": "!android & !ios"
}
]
},
"transport": {
"description": [
"Enables the platform-specific network transport.",
"This feature does nothing for some platforms.",
"Cf. https://github.com/getsentry/sentry-native#compile-time-options"
],
"dependencies": [
{
"name": "curl",
"default-features": false,
"platform": "!windows"
}
]
}
}
}