aboutsummaryrefslogtreecommitdiff
path: root/include/GlobalLib.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/GlobalLib.hpp')
-rw-r--r--include/GlobalLib.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/GlobalLib.hpp b/include/GlobalLib.hpp
index e5a9374..d5e21d1 100644
--- a/include/GlobalLib.hpp
+++ b/include/GlobalLib.hpp
@@ -2,6 +2,7 @@
#define SIBS_GLOBALLIB_HPP
#include "Result.hpp"
+#include "Linker.hpp"
namespace sibs
{
@@ -9,7 +10,7 @@ namespace sibs
{
public:
static Result<bool> validatePackageExists(const std::string &globalLibRootDir, const std::string &name);
- static Result<std::string> getDynamicLibsLinkerFlags(const std::string &globalLibRootDir, const std::string &name, const std::string &version);
+ static Result<std::string> getStaticLibsLinkerFlags(const std::string &globalLibRootDir, const std::string &name, const std::string &version, LinkerFlagCallbackFunc linkerFlagCallbackFunc);
};
}