From f9666347840e519f6248c71688b57227bca4f454 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Sun, 29 Mar 2020 01:37:10 +0100 Subject: Add 'lib' config, for including external libraries without pkg-config --- include/Conf.hpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'include/Conf.hpp') diff --git a/include/Conf.hpp b/include/Conf.hpp index 892b7b6..a854552 100644 --- a/include/Conf.hpp +++ b/include/Conf.hpp @@ -288,6 +288,11 @@ namespace sibs return exposeIncludeDirs; } + virtual const std::vector& getLibs() const + { + return libs; + } + virtual const std::vector& getPlatforms() const { return platforms; @@ -423,6 +428,7 @@ namespace sibs std::vector includeDirs; std::vector exposeIncludeDirs; std::vector ignoreDirs; + std::vector libs; protected: virtual void processObject(StringView name) override; virtual void processField(StringView name, const ConfigValue &value) override; -- cgit v1.2.3