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/abseil/vcpkg.json | |
Diffstat (limited to 'vcpkg/ports/abseil/vcpkg.json')
| -rw-r--r-- | vcpkg/ports/abseil/vcpkg.json | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/vcpkg/ports/abseil/vcpkg.json b/vcpkg/ports/abseil/vcpkg.json new file mode 100644 index 0000000..d3737b2 --- /dev/null +++ b/vcpkg/ports/abseil/vcpkg.json @@ -0,0 +1,31 @@ +{ + "name": "abseil", + "version": "20250512.1", + "port-version": 1, + "description": [ + "Abseil is an open-source collection of C++ library code designed to augment the C++ standard library. The Abseil library code is collected from Google's own C++ code base, has been extensively tested and used in production, and is the same code we depend on in our daily coding lives.", + "In some cases, Abseil provides pieces missing from the C++ standard; in others, Abseil provides alternatives to the standard for special needs we've found through usage in the Google code base. We denote those cases clearly within the library code we provide you.", + "Abseil is not meant to be a competitor to the standard library; we've just found that many of these utilities serve a purpose within our code base, and we now want to provide those resources to the C++ community as a whole." + ], + "homepage": "https://github.com/abseil/abseil-cpp", + "license": "Apache-2.0", + "dependencies": [ + { + "name": "vcpkg-cmake", + "host": true + }, + { + "name": "vcpkg-cmake-config", + "host": true + } + ], + "features": { + "test-helpers": { + "description": "Build Abseil's test helpers", + "dependencies": [ + "abseil", + "gtest" + ] + } + } +} |