diff options
Diffstat (limited to 'vcpkg/ports/libmicrohttpd/vcpkg.json')
| -rw-r--r-- | vcpkg/ports/libmicrohttpd/vcpkg.json | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/vcpkg/ports/libmicrohttpd/vcpkg.json b/vcpkg/ports/libmicrohttpd/vcpkg.json new file mode 100644 index 0000000..9cbd8c9 --- /dev/null +++ b/vcpkg/ports/libmicrohttpd/vcpkg.json @@ -0,0 +1,29 @@ +{ + "name": "libmicrohttpd", + "version": "1.0.1", + "port-version": 2, + "description": "GNU libmicrohttpd is a small C library that is supposed to make it easy to run an HTTP server as part of another application", + "homepage": "https://www.gnu.org/software/libmicrohttpd/", + "license": "LGPL-2.1-or-later", + "supports": "!((arm & windows) | uwp)", + "dependencies": [ + { + "name": "gettext", + "platform": "!windows" + }, + { + "name": "vcpkg-msbuild", + "host": true, + "platform": "windows & !mingw" + } + ], + "features": { + "https": { + "description": "Enable HTTPS protocol support", + "supports": "!windows | mingw", + "dependencies": [ + "libgnutls" + ] + } + } +} |