From a7afa532338f879be08375c950e470d93727be03 Mon Sep 17 00:00:00 2001 From: Eric Kilmer Date: Wed, 9 Nov 2022 12:08:35 -0500 Subject: [PATCH] Add '--verbose' option to build script Will print more info from vcpkg during installation --- build_dependencies.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build_dependencies.sh b/build_dependencies.sh index 254c676a..1d0da2d0 100755 --- a/build_dependencies.sh +++ b/build_dependencies.sh @@ -15,6 +15,8 @@ function Help echo "Usage: ./build_dependencies.sh [--release] [--target-arch ARCH] [--asan] [--upgrade-ports] [--export-dir DIR] [...]" echo "" echo "Options:" + echo " --verbose" + echo " Print more verbose information from vcpkg during installation" echo " --release" echo " Build only release versions with triplet as detected in" echo " this script" @@ -51,6 +53,9 @@ while [[ $# -gt 0 ]] ; do Help exit 0 ;; + --verbose) + VCPKG_ARGS+=("--debug") + ;; --upgrade-ports) UPGRADE_PORTS="true" msg "Upgrading any outdated ports"