We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e3acb7 commit a7afa53Copy full SHA for a7afa53
build_dependencies.sh
@@ -15,6 +15,8 @@ function Help
15
echo "Usage: ./build_dependencies.sh [--release] [--target-arch ARCH] [--asan] [--upgrade-ports] [--export-dir DIR] [...]"
16
echo ""
17
echo "Options:"
18
+ echo " --verbose"
19
+ echo " Print more verbose information from vcpkg during installation"
20
echo " --release"
21
echo " Build only release versions with triplet as detected in"
22
echo " this script"
@@ -51,6 +53,9 @@ while [[ $# -gt 0 ]] ; do
51
53
Help
52
54
exit 0
55
;;
56
+ --verbose)
57
+ VCPKG_ARGS+=("--debug")
58
+ ;;
59
--upgrade-ports)
60
UPGRADE_PORTS="true"
61
msg "Upgrading any outdated ports"
0 commit comments