aboutsummaryrefslogtreecommitdiff
path: root/include/PkgConfig.hpp
blob: 2a52f2be05832da4f71dc180b54ad239131fe5ba (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
25
26
27
28
29
30
31
#ifndef SIBS_PKGCONFIG_HPP
#define SIBS_PKGCONFIG_HPP

#include "env.hpp"
#include "Result.hpp"
#include <string>
#include <vector>

namespace sibs
{
    class PackageListDependency;
    
    struct PkgConfigFlags
    {
        std::string linkerFlags;
        std::string cflags;
    };
    
    class PkgConfig
    {
    public:
        static Result<bool> validatePkgConfigPackageVersionExists(PackageListDependency *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<PackageListDependency*> &libs);
        static Result<std::string> getDynamicLibsCflags(const std::vector<PackageListDependency*> &libs);
        static Result<PkgConfigFlags> getDynamicLibsFlags(const std::vector<PackageListDependency*> &libs);
    };
}

#endif // SIBS_PKGCONFIG_HPP