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"