Skip to content

Commit

Permalink
Add '--verbose' option to build script
Browse files Browse the repository at this point in the history
Will print more info from vcpkg during installation
  • Loading branch information
ekilmer committed Nov 9, 2022
1 parent 3e3acb7 commit a7afa53
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions build_dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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"
Expand Down

0 comments on commit a7afa53

Please sign in to comment.