diff options
| author | wangli28 <47812810+wangli28@users.noreply.github.com> | 2019-07-10 02:34:48 +0800 |
|---|---|---|
| committer | Griffin Downs <35574547+grdowns@users.noreply.github.com> | 2019-07-09 11:34:48 -0700 |
| commit | 503521b77d6fb23b41f5e7d3446ec4c0755c2d58 (patch) | |
| tree | 5ecbdc4f50fd73d97a94f4ec70342a261a983d3b | |
| parent | 22bc820f5eb4057287f4af7d0e2974d0291dece4 (diff) | |
| download | vcpkg-503521b77d6fb23b41f5e7d3446ec4c0755c2d58.tar.gz vcpkg-503521b77d6fb23b41f5e7d3446ec4c0755c2d58.zip | |
[reproc] Fix reproc++ installation path (#7208)
| -rw-r--r-- | ports/reproc/CONTROL | 2 | ||||
| -rw-r--r-- | ports/reproc/portfile.cmake | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/ports/reproc/CONTROL b/ports/reproc/CONTROL index d55102f55..07bf0e6ec 100644 --- a/ports/reproc/CONTROL +++ b/ports/reproc/CONTROL @@ -1,3 +1,3 @@ Source: reproc -Version: 6.0.0-1 +Version: 6.0.0-2 Description: Cross-platform library that simplifies working with external CLI applications from C and C++ diff --git a/ports/reproc/portfile.cmake b/ports/reproc/portfile.cmake index e263c194c..f569340df 100644 --- a/ports/reproc/portfile.cmake +++ b/ports/reproc/portfile.cmake @@ -20,8 +20,8 @@ vcpkg_configure_cmake( vcpkg_install_cmake() file(GLOB REPROC_CMAKE_FILES ${CURRENT_PACKAGES_DIR}/lib/cmake/reproc++/*) -file(COPY ${REPROC_CMAKE_FILES} DESTINATION ${CURRENT_PACKAGES_DIR}/lib/cmake/reproc) - +file(INSTALL ${REPROC_CMAKE_FILES} DESTINATION ${CURRENT_PACKAGES_DIR}/share/reproc++) +file(INSTALL ${CURRENT_PACKAGES_DIR}/debug/lib/cmake/reproc++/reproc++-targets-debug.cmake DESTINATION ${CURRENT_PACKAGES_DIR}/share/reproc++) vcpkg_fixup_cmake_targets(CONFIG_PATH lib/cmake/reproc) # Debug |
