diff options
Diffstat (limited to 'vcpkg/ports/podofo/vcpkg.json')
| -rw-r--r-- | vcpkg/ports/podofo/vcpkg.json | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/vcpkg/ports/podofo/vcpkg.json b/vcpkg/ports/podofo/vcpkg.json new file mode 100644 index 0000000..e653422 --- /dev/null +++ b/vcpkg/ports/podofo/vcpkg.json @@ -0,0 +1,61 @@ +{ + "name": "podofo", + "version": "1.0.2", + "port-version": 1, + "description": "PoDoFo is a library to work with the PDF file format", + "homepage": "https://github.com/podofo/podofo", + "license": "LGPL-2.0-or-later", + "supports": "!uwp & !xbox", + "dependencies": [ + "date", + "fast-float", + "fmt", + "freetype", + "libjpeg-turbo", + "libpng", + { + "name": "libxml2", + "default-features": false + }, + "openssl", + { + "name": "tiff", + "default-features": false + }, + "utf8proc", + "utfcpp", + { + "name": "vcpkg-cmake", + "host": true + }, + { + "name": "vcpkg-cmake-config", + "host": true + }, + "zlib" + ], + "default-features": [ + "fontmanager" + ], + "features": { + "fontconfig": { + "description": "Use Fontconfig", + "dependencies": [ + "fontconfig" + ] + }, + "fontmanager": { + "description": "Enable font manager", + "dependencies": [ + { + "name": "podofo", + "default-features": false, + "features": [ + "fontconfig" + ], + "platform": "!windows" + } + ] + } + } +} |