blob: da78b91a182c1d59d506f9cdd163ed08f6359052 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#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> 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
|