aboutsummaryrefslogtreecommitdiff
path: root/include/GlobalLib.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/GlobalLib.hpp')
-rw-r--r--include/GlobalLib.hpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/include/GlobalLib.hpp b/include/GlobalLib.hpp
new file mode 100644
index 0000000..e5a9374
--- /dev/null
+++ b/include/GlobalLib.hpp
@@ -0,0 +1,16 @@
+#ifndef SIBS_GLOBALLIB_HPP
+#define SIBS_GLOBALLIB_HPP
+
+#include "Result.hpp"
+
+namespace sibs
+{
+ class GlobalLib
+ {
+ 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);
+ };
+}
+
+#endif //SIBS_GLOBALLIB_HPP