aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudio Fantacci <claudiofantacci@users.noreply.github.com>2018-03-15 00:49:54 +0100
committerRobert Schumacher <roschuma@microsoft.com>2018-03-14 16:49:54 -0700
commitf2c7aeedc0154e3e1b19c5583721577a446b9f36 (patch)
treecdba48abe827a040dc2e07a9d7680f0f0075a888
parentb912e84a848de31b48d1ae2cdc2e3579a80eebe0 (diff)
downloadvcpkg-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.cmake1
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)