diff options
author | dec05eba <dec05eba@protonmail.com> | 2019-12-31 09:36:54 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2020-07-06 07:39:58 +0200 |
commit | 7cc5348a8b7495b8b79ed1830223bd3acd3c8aee (patch) | |
tree | 705ee9f078712245c34e3a5232b58b637870085c /include | |
parent | af6ab529bead084b32057053b88606ca69f5db3f (diff) |
Add error_on_warning option to allow turning compiler warnings to errors
Diffstat (limited to 'include')
-rw-r--r-- | include/Conf.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/Conf.hpp b/include/Conf.hpp index 03b2e46..892b7b6 100644 --- a/include/Conf.hpp +++ b/include/Conf.hpp @@ -216,6 +216,7 @@ namespace sibs mainProject(false), sanitize(false), showWarnings(false), + errorOnWarning(false), zigTestAllFiles(false), packaging(false), bundling(false), @@ -412,6 +413,7 @@ namespace sibs std::vector<FileString> zigTestFiles; bool showWarnings; + bool errorOnWarning; bool zigTestAllFiles; bool packaging; bool bundling; |