diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2024-09-03 00:17:17 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-03 00:17:17 +0200 |
| commit | 71b2527df07a8628093792bbf2a7886bed253a09 (patch) | |
| tree | 5984810a0489a073f35d3ef6630c7961de764c51 | |
| parent | 60321d98d47bb334b280df7639e27f47aef63e2f (diff) | |
| parent | b24157738f4c85430038565465d9b2f38db4aa26 (diff) | |
Merge pull request #4184 from Dimension4/help-text-build-mode
Add missing help text for -build-mode:test
| -rw-r--r-- | src/main.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp index 34f3c832d..a03126caf 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -2268,6 +2268,7 @@ gb_internal void print_show_help(String const arg0, String const &command) { print_usage_line(2, "Sets the build mode."); print_usage_line(2, "Available options:"); print_usage_line(3, "-build-mode:exe Builds as an executable."); + print_usage_line(3, "-build-mode:test Builds as an executable that executes tests."); print_usage_line(3, "-build-mode:dll Builds as a dynamically linked library."); print_usage_line(3, "-build-mode:shared Builds as a dynamically linked library."); print_usage_line(3, "-build-mode:lib Builds as a statically linked library."); |