diff options
author | dec05eba <dec05eba@protonmail.com> | 2018-10-02 00:52:30 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2020-07-06 07:39:33 +0200 |
commit | c206fd07db07dc6271185dabac822e10d78b4443 (patch) | |
tree | 91d3608a7a5abfb39a1e96a3c8926270c40e759f /include | |
parent | 3e401d97546fe407ca72e9766cbdbb9c9212091e (diff) |
Add sibs package command
Currently in testing phase.
Builds a redistributable binary by statically linking libraries
(including standard library).
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 87f4fad..7a29624 100644 --- a/include/Conf.hpp +++ b/include/Conf.hpp @@ -301,7 +301,8 @@ namespace sibs mainProject(false), sanitize(false), showWarnings(false), - zigTestAllFiles(false) + zigTestAllFiles(false), + packaging(false) { cmakeDirGlobal = projectPath; cmakeDirStatic = cmakeDirGlobal; @@ -499,6 +500,7 @@ namespace sibs std::vector<FileString> zigTestFiles; bool showWarnings; bool zigTestAllFiles; + bool packaging; protected: virtual void processObject(StringView name) override; virtual void processField(StringView name, const ConfigValue &value) override; |