diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2021-10-31 19:19:56 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-31 19:19:56 +0000 |
| commit | efe05b3e1382d569201709a1d1c5f39878516a0f (patch) | |
| tree | fd3bde412b982746daf9fa681381ff0924aae5ef /src/build_settings.cpp | |
| parent | b1de429d2cf5c2d1643acc73ec3ced22e57d6a07 (diff) | |
| parent | 2a7937e2bac16e587882a0a26e6d5929ed81d700 (diff) | |
Merge pull request #1252 from Kelimion/bug-report
Add new `odin report` command.
Diffstat (limited to 'src/build_settings.cpp')
| -rw-r--r-- | src/build_settings.cpp | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/src/build_settings.cpp b/src/build_settings.cpp index 3bd6622c7..b758f439c 100644 --- a/src/build_settings.cpp +++ b/src/build_settings.cpp @@ -120,15 +120,16 @@ enum BuildModeKind { }; enum CommandKind : u32 { - Command_run = 1<<0, - Command_build = 1<<1, - Command_check = 1<<3, - Command_query = 1<<4, - Command_doc = 1<<5, - Command_version = 1<<6, - Command_test = 1<<7, + Command_run = 1<<0, + Command_build = 1<<1, + Command_check = 1<<3, + Command_query = 1<<4, + Command_doc = 1<<5, + Command_version = 1<<6, + Command_test = 1<<7, Command_strip_semicolon = 1<<8, + Command_bug_report = 1<<9, Command__does_check = Command_run|Command_build|Command_check|Command_query|Command_doc|Command_test|Command_strip_semicolon, Command__does_build = Command_run|Command_build|Command_test, |