diff options
| author | Phoebe <20694052+PhoebeHui@users.noreply.github.com> | 2020-07-30 02:22:12 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-29 11:22:12 -0700 |
| commit | a2d3782198a715a3ded943a86d9dd8f7ff95abf7 (patch) | |
| tree | 706c20cb537b73301e63367f2de364841129ca29 /ports/treehopper | |
| parent | 0babd2ff240a3f500dba4deeecab2df96b57437d (diff) | |
| download | vcpkg-a2d3782198a715a3ded943a86d9dd8f7ff95abf7.tar.gz vcpkg-a2d3782198a715a3ded943a86d9dd8f7ff95abf7.zip | |
[libusb] Fix issue to support linux (#9561)
* [libusb] support linux
* Add Supports
* Using vcpkg_configure_make instead
* Revert to install headers in windows
* Fix failures in libftd1
* Update treehopper
* Add failed ports in ci baseline file
* Revert to remove azure-kinect-sensor-sdk:x64-windows-static=fail in baseline file
* Resolve conflicts
Co-authored-by: PhoebeHui <v-phma@microsoft.com>
Diffstat (limited to 'ports/treehopper')
| -rw-r--r-- | ports/treehopper/CONTROL | 2 | ||||
| -rw-r--r-- | ports/treehopper/portfile.cmake | 7 |
2 files changed, 4 insertions, 5 deletions
diff --git a/ports/treehopper/CONTROL b/ports/treehopper/CONTROL index f50e84f1b..b54e10dde 100644 --- a/ports/treehopper/CONTROL +++ b/ports/treehopper/CONTROL @@ -1,5 +1,5 @@ Source: treehopper
-Version: 1.11.3-3
+Version: 1.11.3-4
Description: Treehopper connects the physical world to your computer, tablet, or smartphone.
Homepage: https://treehopper.io
Build-Depends: libusb
diff --git a/ports/treehopper/portfile.cmake b/ports/treehopper/portfile.cmake index 46ed0d85e..c9e9855ce 100644 --- a/ports/treehopper/portfile.cmake +++ b/ports/treehopper/portfile.cmake @@ -1,5 +1,3 @@ -include(vcpkg_common_functions) - vcpkg_check_linkage(ONLY_DYNAMIC_LIBRARY ONLY_DYNAMIC_CRT) vcpkg_from_github( @@ -18,8 +16,9 @@ vcpkg_install_cmake() vcpkg_copy_pdbs() vcpkg_fixup_cmake_targets() +file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/share) + file(INSTALL ${SOURCE_PATH}/C++/API/inc/ DESTINATION ${CURRENT_PACKAGES_DIR}/include/Treehopper/) -file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/treehopper RENAME copyright) +file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright) -file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/share) |
