aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/libxml2/vcpkg.json
diff options
context:
space:
mode:
Diffstat (limited to 'vcpkg/ports/libxml2/vcpkg.json')
-rw-r--r--vcpkg/ports/libxml2/vcpkg.json56
1 files changed, 56 insertions, 0 deletions
diff --git a/vcpkg/ports/libxml2/vcpkg.json b/vcpkg/ports/libxml2/vcpkg.json
new file mode 100644
index 0000000..2f8413d
--- /dev/null
+++ b/vcpkg/ports/libxml2/vcpkg.json
@@ -0,0 +1,56 @@
+{
+ "name": "libxml2",
+ "version": "2.15.0",
+ "description": "Libxml2 is the XML C parser and toolkit developed for the Gnome project (but usable outside of the Gnome platform).",
+ "homepage": "https://gitlab.gnome.org/GNOME/libxml2/-/wikis/home",
+ "license": "MIT",
+ "dependencies": [
+ {
+ "name": "vcpkg-cmake",
+ "host": true
+ },
+ {
+ "name": "vcpkg-cmake-config",
+ "host": true
+ }
+ ],
+ "default-features": [
+ "iconv",
+ "zlib"
+ ],
+ "features": {
+ "iconv": {
+ "description": "Add ICONV support",
+ "dependencies": [
+ "libiconv"
+ ]
+ },
+ "icu": {
+ "description": "Add ICU support",
+ "dependencies": [
+ "icu"
+ ]
+ },
+ "legacy": {
+ "description": "Add deprecated APIs for compatibility",
+ "dependencies": [
+ {
+ "name": "libxml2",
+ "default-features": false,
+ "features": [
+ "zlib"
+ ]
+ }
+ ]
+ },
+ "tools": {
+ "description": "Build tools"
+ },
+ "zlib": {
+ "description": "Use ZLib",
+ "dependencies": [
+ "zlib"
+ ]
+ }
+ }
+}