aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2018-09-29 15:03:24 +0200
committerdec05eba <dec05eba@protonmail.com>2020-07-06 07:39:33 +0200
commita5eeb97292ed084d0da3a02d7057d6f72219e6b9 (patch)
treed6ea0e590b4be964bf1967f2eee60006ff1dbb53 /include
parent9f3f366deec411675cc21c2fceaa7ac090d03a4c (diff)
Fix TODO: Move include_dirs & ignore_dirs under config
Merge duplicate parsing code into one function
Diffstat (limited to 'include')
-rw-r--r--include/Conf.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/Conf.hpp b/include/Conf.hpp
index 35dab86..709d285 100644
--- a/include/Conf.hpp
+++ b/include/Conf.hpp
@@ -431,8 +431,8 @@ namespace sibs
private:
void parseCLang(const StringView &fieldName, const ConfigValue &fieldValue);
void parseCppLang(const StringView &fieldName, const ConfigValue &fieldValue);
- void parsePlatformConfigs(const StringView &fieldName, const ConfigValue &fieldValue);
- void parsePlatformConfig(const StringView &fieldName, const ConfigValue &fieldValue);
+ void parsePlatformBuildTypeConfigs(const StringView &fieldName, const ConfigValue &fieldValue);
+ std::string parsePlatformConfigStatic(const StringView &fieldName, const ConfigValue &fieldValue);
void parsePlatformConfigStaticDebug(const StringView &fieldName, const ConfigValue &fieldValue);
void parsePlatformConfigStaticRelease(const StringView &fieldName, const ConfigValue &fieldValue);
void parseCmake(const StringView &fieldName, const ConfigValue &fieldValue, FileString &cmakeDir, FileString &cmakeArgs);