diff options
author | dec05eba <dec05eba@protonmail.com> | 2018-10-02 21:14:45 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2020-07-06 07:39:33 +0200 |
commit | d22001283a49ad723da0023039c904dc6db7c5a0 (patch) | |
tree | 4ec8b61a33b57ad2ccec5cc1309ea1f927620ef2 /include | |
parent | 7a483ac5f0e483dd9dff2a22ee4f0480ab75f039 (diff) |
Fix bundle for non system libraries
Diffstat (limited to 'include')
-rw-r--r-- | include/Conf.hpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/Conf.hpp b/include/Conf.hpp index 7a29624..d23c655 100644 --- a/include/Conf.hpp +++ b/include/Conf.hpp @@ -302,7 +302,8 @@ namespace sibs sanitize(false), showWarnings(false), zigTestAllFiles(false), - packaging(false) + packaging(false), + bundling(false) { cmakeDirGlobal = projectPath; cmakeDirStatic = cmakeDirGlobal; @@ -501,6 +502,7 @@ namespace sibs bool showWarnings; bool zigTestAllFiles; bool packaging; + bool bundling; protected: virtual void processObject(StringView name) override; virtual void processField(StringView name, const ConfigValue &value) override; |