aboutsummaryrefslogtreecommitdiff
path: root/include/GlobalLib.hpp
blob: e5a9374e275d34b523798de4441d2ad912a15c93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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