aboutsummaryrefslogtreecommitdiff
path: root/include/PkgConfig.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/PkgConfig.hpp')
-rw-r--r--include/PkgConfig.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/PkgConfig.hpp b/include/PkgConfig.hpp
index 4bafa18..2af4ac9 100644
--- a/include/PkgConfig.hpp
+++ b/include/PkgConfig.hpp
@@ -2,6 +2,7 @@
#define SIBS_PKGCONFIG_HPP
#include "Result.hpp"
+#include "Dependency.hpp"
#include <string>
#include <vector>
@@ -12,7 +13,7 @@ namespace sibs
public:
static Result<bool> validatePackageExists(const std::string &name);
static Result<bool> validatePackageVersionAtLeast(const std::string &name, const std::string &version);
- static Result<std::string> getDynamicLibsLinkerFlags(const std::vector<std::string> &libs);
+ static Result<std::string> getDynamicLibsLinkerFlags(const std::vector<Dependency> &libs);
};
}