aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Schumacher <roschuma@microsoft.com>2017-03-13 16:49:11 -0700
committerRobert Schumacher <roschuma@microsoft.com>2017-03-13 16:49:26 -0700
commita92ecac8a79c9b03ba3aa86b1478f75c4d2f8847 (patch)
tree5bf1686591717ce63ee9228445716eceec988574
parent5ffac1b657fe235bdda59e75b77edd4c5ecdb26a (diff)
downloadvcpkg-a92ecac8a79c9b03ba3aa86b1478f75c4d2f8847.tar.gz
vcpkg-a92ecac8a79c9b03ba3aa86b1478f75c4d2f8847.zip
[uwebsockets] Fix control file. Add missing include.
-rw-r--r--ports/uwebsockets/CONTROL2
-rw-r--r--ports/uwebsockets/portfile.cmake3
2 files changed, 4 insertions, 1 deletions
diff --git a/ports/uwebsockets/CONTROL b/ports/uwebsockets/CONTROL
index 840990004..4709e155f 100644
--- a/ports/uwebsockets/CONTROL
+++ b/ports/uwebsockets/CONTROL
@@ -1,4 +1,4 @@
Source: uwebsockets
-Version: 0.12.0
+Version: 0.13.0-1
Build-Depends: libuv, openssl, zlib
Description: Highly scalable cross-platform WebSocket & HTTP library for C++11 and Node.js \ No newline at end of file
diff --git a/ports/uwebsockets/portfile.cmake b/ports/uwebsockets/portfile.cmake
index 1049e761d..47ee00624 100644
--- a/ports/uwebsockets/portfile.cmake
+++ b/ports/uwebsockets/portfile.cmake
@@ -20,6 +20,9 @@ vcpkg_configure_cmake(
vcpkg_install_cmake()
+file(GLOB HEADERS ${SOURCE_PATH}/src/*.h)
+file(COPY ${HEADERS} DESTINATION ${CURRENT_PACKAGES_DIR}/include/uWS)
+
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
file(COPY ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/uwebsockets)