diff options
| author | Claudio Fantacci <claudiofantacci@users.noreply.github.com> | 2018-03-15 00:49:54 +0100 |
|---|---|---|
| committer | Robert Schumacher <roschuma@microsoft.com> | 2018-03-14 16:49:54 -0700 |
| commit | f2c7aeedc0154e3e1b19c5583721577a446b9f36 (patch) | |
| tree | cdba48abe827a040dc2e07a9d7680f0f0075a888 | |
| parent | b912e84a848de31b48d1ae2cdc2e3579a80eebe0 (diff) | |
| download | vcpkg-f2c7aeedc0154e3e1b19c5583721577a446b9f36.tar.gz vcpkg-f2c7aeedc0154e3e1b19c5583721577a446b9f36.zip | |
Fix PCL portfile debug/share error (#2996)
Add missing file(REMOVE_RECURSE /debug/share) that was preventing post-build validation to complete successfully.
| -rw-r--r-- | ports/pcl/portfile.cmake | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ports/pcl/portfile.cmake b/ports/pcl/portfile.cmake index ac92d40db..812e05674 100644 --- a/ports/pcl/portfile.cmake +++ b/ports/pcl/portfile.cmake @@ -76,6 +76,7 @@ vcpkg_fixup_cmake_targets(CONFIG_PATH share/pcl) vcpkg_copy_pdbs() file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include) +file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/share) if(BUILD_TOOLS) file(GLOB EXEFILES_RELEASE ${CURRENT_PACKAGES_DIR}/bin/*.exe) |
