diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/Conf.hpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/Conf.hpp b/include/Conf.hpp index 8da352e..b893d3a 100644 --- a/include/Conf.hpp +++ b/include/Conf.hpp @@ -116,6 +116,11 @@ namespace sibs { return projectPath; } + + virtual const std::vector<std::string>& getIncludeDirs() const + { + return includeDirs; + } protected: virtual void processObject(StringView name) override; virtual void processField(StringView name, const ConfigValue &value) override; @@ -127,6 +132,7 @@ namespace sibs std::string testPath; PackageType packageType; std::vector<Dependency> dependencies; + std::vector<std::string> includeDirs; bool finishedProcessing; }; |