diff options
| author | gingerBill <bill@gingerbill.org> | 2020-11-17 15:15:26 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2020-11-17 15:15:26 +0000 |
| commit | 4f303603e764c219e56dae559d7e36358b199c31 (patch) | |
| tree | 87b6495f362bb52f0dc6bb8537d19083c10b9b00 /src/main.cpp | |
| parent | a0fbc563173318821af945c76d8417cf599abdbd (diff) | |
Add more documentation for odin doc flags
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp index 2c7736762..5faedbccb 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1559,11 +1559,19 @@ void print_show_help(String const arg0, String const &command) { print_usage_line(0, ""); if (doc) { + print_usage_line(1, "-all"); + print_usage_line(2, "Show all documentation for the packages"); + print_usage_line(0, ""); + print_usage_line(1, "-package:<string>"); print_usage_line(2, "Add package name to generate documentation for"); print_usage_line(2, "Multiple flags are allowed"); print_usage_line(2, "Example: -doc:runtime"); print_usage_line(0, ""); + + print_usage_line(1, "-all-packages"); + print_usage_line(2, "Generates documentation for all packages used in the current project"); + print_usage_line(0, ""); } if (run_or_build) { |