diff options
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 cfe0133..a93b44f 100644 --- a/include/Conf.hpp +++ b/include/Conf.hpp @@ -231,7 +231,8 @@ namespace sibs packaging(false), bundling(false), platform(SYSTEM_PLATFORM), - use_lto(false) + use_lto(false), + include_debug_symbols_in_release(false) { cmakeDirGlobal = projectPath; switch(optimizationLevel) @@ -426,6 +427,7 @@ namespace sibs PackageVersion version; Platform platform; bool use_lto; + bool include_debug_symbols_in_release; std::vector<std::string> includeDirs; std::vector<std::string> exposeIncludeDirs; std::vector<std::string> ignoreDirs; |