aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2019-03-19 20:07:35 +0000
committerPhil Christensen <philc@microsoft.com>2019-03-19 13:07:35 -0700
commit14bc52eb394fdfbe92778b38cea0755064482bf9 (patch)
tree610bef3bb5910ac696f468816c52031c16b528e4
parent44b9e5f98b41225ad9327d5c248e4a754cdddd9c (diff)
downloadvcpkg-14bc52eb394fdfbe92778b38cea0755064482bf9.tar.gz
vcpkg-14bc52eb394fdfbe92778b38cea0755064482bf9.zip
Make use of vcpkg_copy_pdbs instead of manually copying the pdb files (#5733)
-rw-r--r--ports/ace/CONTROL2
-rw-r--r--ports/ace/portfile.cmake12
2 files changed, 3 insertions, 11 deletions
diff --git a/ports/ace/CONTROL b/ports/ace/CONTROL
index d0f1e6292..cb11cfce5 100644
--- a/ports/ace/CONTROL
+++ b/ports/ace/CONTROL
@@ -1,3 +1,3 @@
Source: ace
-Version: 6.5.4-1
+Version: 6.5.4-2
Description: The ADAPTIVE Communication Environment
diff --git a/ports/ace/portfile.cmake b/ports/ace/portfile.cmake
index 105cd31aa..600be9ae0 100644
--- a/ports/ace/portfile.cmake
+++ b/ports/ace/portfile.cmake
@@ -89,16 +89,6 @@ function(install_ace_library SOURCE_PATH ACE_LIBRARY)
${LIB_PATH}/${ACE_LIBRARY}.dll
DESTINATION ${CURRENT_PACKAGES_DIR}/bin
)
-
- # Install the pdb files
- file(INSTALL
- ${LIB_PATH}/${ACE_LIBRARY}${DLL_DECORATOR}d_dll.pdb
- DESTINATION ${CURRENT_PACKAGES_DIR}/debug/bin
- )
- file(INSTALL
- ${LIB_PATH}/${ACE_LIBRARY}${DLL_DECORATOR}.pdb
- DESTINATION ${CURRENT_PACKAGES_DIR}/bin
- )
endif()
# Install the lib files
@@ -124,3 +114,5 @@ install_ace_library(${ACE_ROOT} "ACE_RLECompression")
# Handle copyright
file(COPY ${ACE_ROOT}/COPYING DESTINATION ${CURRENT_PACKAGES_DIR}/share/ace)
file(RENAME ${CURRENT_PACKAGES_DIR}/share/ace/COPYING ${CURRENT_PACKAGES_DIR}/share/ace/copyright)
+
+vcpkg_copy_pdbs() \ No newline at end of file