Skip to content

Commit a7afa53

Browse files
committed
Add '--verbose' option to build script
Will print more info from vcpkg during installation
1 parent 3e3acb7 commit a7afa53

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

build_dependencies.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ function Help
1515
echo "Usage: ./build_dependencies.sh [--release] [--target-arch ARCH] [--asan] [--upgrade-ports] [--export-dir DIR] [...]"
1616
echo ""
1717
echo "Options:"
18+
echo " --verbose"
19+
echo " Print more verbose information from vcpkg during installation"
1820
echo " --release"
1921
echo " Build only release versions with triplet as detected in"
2022
echo " this script"
@@ -51,6 +53,9 @@ while [[ $# -gt 0 ]] ; do
5153
Help
5254
exit 0
5355
;;
56+
--verbose)
57+
VCPKG_ARGS+=("--debug")
58+
;;
5459
--upgrade-ports)
5560
UPGRADE_PORTS="true"
5661
msg "Upgrading any outdated ports"

0 commit comments

Comments
 (0)