We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 60fd590 + 78dd94a commit 7bf5ed3Copy full SHA for 7bf5ed3
3 files changed
include/vix/cli/process/Process.hpp
@@ -165,6 +165,14 @@ namespace vix::cli::process
165
166
bool singleCpp = false;
167
fs::path cppFile;
168
+
169
+ bool warnings{false};
170
+ std::size_t warningsPage{1};
171
+ std::size_t warningsLimit{10};
172
+ bool warningsPageSet{false};
173
+ bool warningsLimitSet{false};
174
175
+ bool warningCheck{false};
176
};
177
178
/**
src/build/BuildStyle.cpp
@@ -818,9 +818,9 @@ namespace vix::cli::build
818
819
out << " "
820
<< colorize(style::GRAY, "hint:")
821
- << " run with "
822
- << colorize(style::CYAN, "--verbose")
823
- << " for full compiler output"
+ << " run "
+ << colorize(style::CYAN, "vix build --warnings")
+ << " to view all warnings"
824
<< "\n\n";
825
}
826
0 commit comments