]> git.tdb.fi Git - builder.git/blob - source/pkgconfig.h
4b2505dcefa6213e9ccfef953c878f3771aaf6d4
[builder.git] / source / pkgconfig.h
1 #ifndef PKGCONFIG_H_
2 #define PKGCONFIG_H_
3
4 #include "sourcepackage.h"
5 #include "filetarget.h"
6
7 /**
8 Creates a .pc file to enable other packages fetch build options with pkg-config.
9 */
10 class PkgConfig: public FileTarget
11 {
12 public:
13         PkgConfig(Builder &, const SourcePackage &);
14
15         virtual const char *get_type() const { return "PkgConfig"; }
16 };
17
18 #endif