#ifndef SIBS_GLOBALLIB_HPP #define SIBS_GLOBALLIB_HPP #include "Result.hpp" namespace sibs { class GlobalLib { public: static Result validatePackageExists(const std::string &globalLibRootDir, const std::string &name); static Result getDynamicLibsLinkerFlags(const std::string &globalLibRootDir, const std::string &name, const std::string &version); }; } #endif //SIBS_GLOBALLIB_HPP