aboutsummaryrefslogtreecommitdiff
path: root/ports
diff options
context:
space:
mode:
authorJoe Noël <joe.noel@focusrite.com>2021-03-23 21:42:28 +0000
committerGitHub <noreply@github.com>2021-03-23 14:42:28 -0700
commit3166bcc15b156b57667d9e573fba9775ceef3eb1 (patch)
tree394ba00c53412e4e32f467fc2226291ac02e2b6f /ports
parent9327b5c5bf11c44f7d80c3b0fe3ad708a49299c2 (diff)
downloadvcpkg-3166bcc15b156b57667d9e573fba9775ceef3eb1.tar.gz
vcpkg-3166bcc15b156b57667d9e573fba9775ceef3eb1.zip
[websocketpp] Add features to build without boost (#16675)
Run vcpkg x-add-version Change version-string to version Co-authored-by: Robert Schumacher <roschuma@microsoft.com> Roll boost-asio, openssl and zlip into a single feature Overwrite version
Diffstat (limited to 'ports')
-rw-r--r--ports/websocketpp/CONTROL5
-rw-r--r--ports/websocketpp/vcpkg.json21
2 files changed, 21 insertions, 5 deletions
diff --git a/ports/websocketpp/CONTROL b/ports/websocketpp/CONTROL
deleted file mode 100644
index fee55c603..000000000
--- a/ports/websocketpp/CONTROL
+++ /dev/null
@@ -1,5 +0,0 @@
-Source: websocketpp
-Version: 0.8.2
-Build-Depends: zlib, openssl, boost-asio
-Homepage: https://github.com/zaphoyd/websocketpp
-Description: Library that implements RFC6455 The WebSocket Protocol \ No newline at end of file
diff --git a/ports/websocketpp/vcpkg.json b/ports/websocketpp/vcpkg.json
new file mode 100644
index 000000000..460fa86ca
--- /dev/null
+++ b/ports/websocketpp/vcpkg.json
@@ -0,0 +1,21 @@
+{
+ "name": "websocketpp",
+ "version": "0.8.2",
+ "port-version": 1,
+ "description": "Library that implements RFC6455 The WebSocket Protocol",
+ "homepage": "https://github.com/zaphoyd/websocketpp",
+ "documentation": "http://docs.websocketpp.org/",
+ "default-features": [
+ "recommended"
+ ],
+ "features": {
+ "recommended": {
+ "description": "Use recommended dependencies",
+ "dependencies": [
+ "boost-asio",
+ "openssl",
+ "zlib"
+ ]
+ }
+ }
+}