aboutsummaryrefslogtreecommitdiff
path: root/include/PkgConfig.hpp
blob: 23c1b128e449e8da3f17fa4bd4bf58b510d288c1 (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
32
33
34
#ifndef SIBS_PKGCONFIG_HPP
#define SIBS_PKGCONFIG_HPP

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

namespace sibs
{
    class PackageListDependency;
    
    struct PkgConfigFlags
    {
        std::string linkerFlags;
        std::string cflags;
    };
    
    class PkgConfig
    {
    public:
        static void setPkgConfigPath(const FileString &path);
        static Result<bool> validatePkgConfigPackageVersionExists(const PackageListDependency &dependency);
        static Result<bool> validatePackageExists(const std::string &name);
        static Result<PackageVersion> getPackageVersion(const std::string &name);
        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