diff options
| author | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
|---|---|---|
| committer | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
| commit | 54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch) | |
| tree | d915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/sentry-native/vcpkg.json | |
Diffstat (limited to 'vcpkg/ports/sentry-native/vcpkg.json')
| -rw-r--r-- | vcpkg/ports/sentry-native/vcpkg.json | 94 |
1 files changed, 94 insertions, 0 deletions
diff --git a/vcpkg/ports/sentry-native/vcpkg.json b/vcpkg/ports/sentry-native/vcpkg.json new file mode 100644 index 0000000..008ed3c --- /dev/null +++ b/vcpkg/ports/sentry-native/vcpkg.json @@ -0,0 +1,94 @@ +{ + "name": "sentry-native", + "version": "0.12.1", + "description": "Sentry SDK for C, C++ and native applications.", + "homepage": "https://sentry.io/", + "license": "MIT", + "supports": "osx | linux | (!arm & !uwp)", + "dependencies": [ + { + "name": "vcpkg-cmake", + "host": true + }, + { + "name": "vcpkg-cmake-config", + "host": true + } + ], + "default-features": [ + "backend", + "transport", + { + "name": "wer", + "platform": "windows & !static" + } + ], + "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": "pkgcong is used by the breakpad backend.", + "name": "pkgconf", + "host": true, + "platform": "!android & !ios" + }, + { + "$comment": "sentry-native[transport] is used by the crashpad backend.", + "name": "sentry-native", + "features": [ + "transport" + ], + "platform": "!android & !ios & !windows" + }, + { + "$comment": "zlib is used by the crashpad backend.", + "name": "zlib", + "platform": "!android & !ios" + } + ] + }, + "compression": { + "description": [ + "Enables gzip compression support for the transport.", + "Cf.https://github.com/getsentry/sentry-native#compile-time-options" + ], + "dependencies": [ + "zlib" + ] + }, + "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" + } + ] + }, + "wer": { + "description": [ + "Enables the Windows Error Reporting backend.", + "Cf.https://github.com/getsentry/sentry-native#compile-time-options" + ], + "supports": "windows & !static", + "dependencies": [ + { + "name": "sentry-native", + "features": [ + "backend" + ] + } + ] + } + } +} |