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/ace/vcpkg.json | |
Diffstat (limited to 'vcpkg/ports/ace/vcpkg.json')
| -rw-r--r-- | vcpkg/ports/ace/vcpkg.json | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/vcpkg/ports/ace/vcpkg.json b/vcpkg/ports/ace/vcpkg.json new file mode 100644 index 0000000..99e4f84 --- /dev/null +++ b/vcpkg/ports/ace/vcpkg.json @@ -0,0 +1,56 @@ +{ + "name": "ace", + "version": "8.0.5", + "maintainers": "Johnny Willemsen <jwillemsen@remedy.nl>", + "description": "The ADAPTIVE Communication Environment", + "homepage": "https://github.com/DOCGroup/ACE_TAO", + "license": "DOC", + "supports": "!uwp", + "dependencies": [ + { + "name": "vcpkg-cmake-get-vars", + "host": true + }, + { + "name": "vcpkg-msbuild", + "host": true, + "platform": "windows" + } + ], + "features": { + "ssl": { + "description": "Enable SSL/TLS features in ACE", + "dependencies": [ + "openssl" + ] + }, + "tao": { + "description": "The ACE ORB", + "supports": "native | !(windows & arm)" + }, + "wchar": { + "description": "Enable extra wide char functions in ACE", + "supports": "!osx" + }, + "xml": { + "description": "Enable XML features in ACE" + }, + "xml-utils": { + "description": "Include the ACE_XML_Utils library", + "dependencies": [ + { + "name": "xerces-c", + "features": [ + "xmlch-wchar" + ] + } + ] + }, + "zlib": { + "description": "Enable zlib support", + "dependencies": [ + "zlib" + ] + } + } +} |