We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c1096d commit 2c9bd5dCopy full SHA for 2c9bd5d
1 file changed
commands/setup
@@ -14,6 +14,7 @@ Options:
14
CMAKE_GENERATOR=|...
15
16
CTEST_OUTPUT_ON_FAILURE=1|0
17
+ CTEST_VERBOSITY=|quiet|verbose
18
19
CC=cc|gcc|clang|...
20
CXX=c++|g++|clang++|...
@@ -139,6 +140,10 @@ if [[ "$CMAKE_GENERATOR" =~ Xcode ]]; then
139
140
fi
141
142
143
+if [ -n "$CTEST_VERBOSITY" ]; then
144
+ TEST_CMD+=("--$CTEST_VERBOSITY")
145
+fi
146
+
147
# Watch ------------------------------------------------------------------------
148
149
export WATCH_CMD=(fswatch --one-per-batch --recursive)
0 commit comments