aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHelco <Helco@users.noreply.github.com>2019-02-14 19:25:00 +0100
committerVictor Romero <romerosanchezv@gmail.com>2019-02-14 10:25:00 -0800
commit26e8a0d3793927307467637d63b105b201ca21d3 (patch)
treec9291b9bc4a4cc211db4b22913e98a3f5dafe7d6
parent4f7460f685e9f54667cdf62c51e65ac079676c83 (diff)
downloadvcpkg-26e8a0d3793927307467637d63b105b201ca21d3.tar.gz
vcpkg-26e8a0d3793927307467637d63b105b201ca21d3.zip
Fix uvw.hpp not being installed (#5355)
-rw-r--r--ports/uvw/CONTROL2
-rw-r--r--ports/uvw/portfile.cmake5
2 files changed, 6 insertions, 1 deletions
diff --git a/ports/uvw/CONTROL b/ports/uvw/CONTROL
index 1fc066ee2..0a055ad8b 100644
--- a/ports/uvw/CONTROL
+++ b/ports/uvw/CONTROL
@@ -1,3 +1,3 @@
Source: uvw
-Version: 1.11.2
+Version: 1.11.3
Description: Header-only, event based, tiny and easy to use libuv wrapper in modern C++. <https://github.com/skypjack/uvw>
diff --git a/ports/uvw/portfile.cmake b/ports/uvw/portfile.cmake
index 0cbacec21..e7d2c9b00 100644
--- a/ports/uvw/portfile.cmake
+++ b/ports/uvw/portfile.cmake
@@ -13,6 +13,11 @@ file(INSTALL
DESTINATION ${CURRENT_PACKAGES_DIR}/include
)
+file(INSTALL
+ ${SOURCE_PATH}/src/uvw.hpp
+ DESTINATION ${CURRENT_PACKAGES_DIR}/include
+)
+
# Handle copyright/readme/package files
file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/uvw RENAME copyright)
file(INSTALL ${SOURCE_PATH}/README.md DESTINATION ${CURRENT_PACKAGES_DIR}/share/uvw)