aboutsummaryrefslogtreecommitdiff
path: root/ports/ixwebsocket/CONTROL
diff options
context:
space:
mode:
authorBenjamin Sergeant <bsergean@gmail.com>2019-06-24 15:38:04 -0700
committerRobert Schumacher <roschuma@microsoft.com>2019-06-24 15:38:04 -0700
commitecc4b1631f7e3252a8b84ab7564c83ecda8a6763 (patch)
tree4363b0bdddb76e683b633084b75347092edb39aa /ports/ixwebsocket/CONTROL
parentaefbaa1ba9c7b44af0c91c89018ae3f65f3e73ab (diff)
downloadvcpkg-ecc4b1631f7e3252a8b84ab7564c83ecda8a6763.tar.gz
vcpkg-ecc4b1631f7e3252a8b84ab7564c83ecda8a6763.zip
[ixwebsocket] add new port (#6835)
* Add ixwebsocket * remove commented cmake directives * add dependencies * directive to remove share folder * try again with 4.0.3 which is using find_library for external code instead of vendoring it by default * use vcpkg feature flag to detect ssl backend + compile ws * do not build ws command line tool * add a feature for osx / control file closer to curl one * stop using features, as this makes CI unhappy * Revert "stop using features, as this makes CI unhappy" This reverts commit 4666b185671a9e37de5252334965fd63c060aea0. * play again with Build-Depends to fix error which appears to be only on uwp * call vcpkg_from_github instead * share folder not created
Diffstat (limited to 'ports/ixwebsocket/CONTROL')
-rw-r--r--ports/ixwebsocket/CONTROL21
1 files changed, 21 insertions, 0 deletions
diff --git a/ports/ixwebsocket/CONTROL b/ports/ixwebsocket/CONTROL
new file mode 100644
index 000000000..98b64cd28
--- /dev/null
+++ b/ports/ixwebsocket/CONTROL
@@ -0,0 +1,21 @@
+Source: ixwebsocket
+Version: 4.0.3
+Build-Depends: zlib
+Description: Lightweight WebSocket Client and Server + HTTP Client
+Default-Features: ssl
+
+Feature: ssl
+Build-Depends: ixwebsocket[openssl] (!uwp&!windows&!osx), ixwebsocket[mbedtls] (windows), ixwebsocket[mbedtls] (uwp), ixwebsocket[sectransp] (osx)
+Description: Default SSL backend
+
+# SSL backends
+Feature: openssl
+Build-Depends: openssl
+Description: SSL support (OpenSSL)
+
+Feature: mbedtls
+Build-Depends: mbedtls
+Description: SSL support (mbedTLS)
+
+Feature: sectransp
+Description: SSL support (sectransp)