aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorcodicodi <rob.ceglinski@gmail.com>2017-01-11 21:20:53 +0100
committercodicodi <rob.ceglinski@gmail.com>2017-01-11 21:20:53 +0100
commit275a59dd9dc9b6ec324ac9eb5460193bfd53b736 (patch)
tree05eba8741ed41c2fb540f703432cfaa3581dc414 /scripts
parentb966acc5c2572fff68b763024d9b96a2087aad29 (diff)
downloadvcpkg-275a59dd9dc9b6ec324ac9eb5460193bfd53b736.tar.gz
vcpkg-275a59dd9dc9b6ec324ac9eb5460193bfd53b736.zip
Add glib
Diffstat (limited to 'scripts')
-rw-r--r--scripts/cmake/vcpkg_common_functions.cmake1
-rw-r--r--scripts/cmake/vcpkg_copy_tool_dependencies.cmake16
2 files changed, 17 insertions, 0 deletions
diff --git a/scripts/cmake/vcpkg_common_functions.cmake b/scripts/cmake/vcpkg_common_functions.cmake
index ff1fae953..6e60bf2bc 100644
--- a/scripts/cmake/vcpkg_common_functions.cmake
+++ b/scripts/cmake/vcpkg_common_functions.cmake
@@ -11,3 +11,4 @@ include(vcpkg_configure_cmake)
include(vcpkg_configure_qmake)
include(vcpkg_apply_patches)
include(vcpkg_copy_pdbs)
+include(vcpkg_copy_tool_dependencies)
diff --git a/scripts/cmake/vcpkg_copy_tool_dependencies.cmake b/scripts/cmake/vcpkg_copy_tool_dependencies.cmake
new file mode 100644
index 000000000..d8de15207
--- /dev/null
+++ b/scripts/cmake/vcpkg_copy_tool_dependencies.cmake
@@ -0,0 +1,16 @@
+# Copy dlls for all tools in ${CURRENT_PACKAGES_DIR}/tools
+
+function(vcpkg_copy_tool_dependencies)
+ macro(search_for_dependencies PATH_TO_SEARCH)
+ file(GLOB TOOLS ${CURRENT_PACKAGES_DIR}/tools/*.exe ${CURRENT_PACKAGES_DIR}/tools/*.dll)
+ foreach(TOOL ${TOOLS})
+ execute_process(COMMAND powershell -noprofile -executionpolicy UnRestricted -nologo
+ -file ${VCPKG_ROOT_DIR}/scripts/buildsystems/msbuild/applocal.ps1
+ -targetBinary ${TOOL}
+ -installedDir ${PATH_TO_SEARCH}
+ OUTPUT_VARIABLE OUT)
+ endforeach()
+ endmacro()
+ search_for_dependencies(${CURRENT_PACKAGES_DIR}/bin)
+ search_for_dependencies(${CURRENT_INSTALLED_DIR}/bin)
+endfunction()