diff options
| author | Ginger Bill <bill@gingerbill.org> | 2017-06-18 23:16:57 +0100 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2017-06-18 23:16:57 +0100 |
| commit | 126f7aa8923b6517c1c7a650ee6c0a374fa293da (patch) | |
| tree | 74e93bf5bd1d6aa7c772df42b7797e08cf5144c7 /src/build_settings.cpp | |
| parent | 2957f007e34ed7e2704a40c9e7af9148aebcdf23 (diff) | |
Begin work on documentation generation
Diffstat (limited to 'src/build_settings.cpp')
| -rw-r--r-- | src/build_settings.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/build_settings.cpp b/src/build_settings.cpp index 8d397705e..23b55b915 100644 --- a/src/build_settings.cpp +++ b/src/build_settings.cpp @@ -15,6 +15,7 @@ struct BuildContext { String llc_flags; String link_flags; bool is_dll; + bool generate_docs; }; @@ -263,7 +264,7 @@ String get_fullpath_core(gbAllocator a, String path) { void init_build_context(void) { BuildContext *bc = &build_context; bc->ODIN_VENDOR = str_lit("odin"); - bc->ODIN_VERSION = str_lit("0.4.0"); + bc->ODIN_VERSION = str_lit("0.5.0"); bc->ODIN_ROOT = odin_root_dir(); #if defined(GB_SYSTEM_WINDOWS) |