aboutsummaryrefslogtreecommitdiff
path: root/include/PkgConfig.hpp
blob: e525843fd3850a37a60da35277b015cd6b3349a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef SIBS_PKGCONFIG_HPP
#define SIBS_PKGCONFIG_HPP

#include "env.hpp"
#if OS_FAMILY == OS_FAMILY_POSIX
#include "Result.hpp"
#include "Dependency.hpp"
#include <string>
#include <vector>

namespace sibs
{
    class PkgConfig
    {
    public:
        static Result<bool> validatePkgConfigPackageVersionExists(const Dependency &dependency);
        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<Dependency> &libs);
    };
}
#endif // OS_FAMILY_POSIX

#endif // SIBS_PKGCONFIG_HPP