]> git.tdb.fi Git - builder.git/blob - source/pkgconfigfile.h
A bunch of minor cleanups
[builder.git] / source / pkgconfigfile.h
1 #ifndef PKGCONFIGFILE_H_
2 #define PKGCONFIGFILE_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 PkgConfigFile: public FileTarget
11 {
12 public:
13         PkgConfigFile(Builder &, const SourcePackage &);
14
15         virtual const char *get_type() const { return "PkgConfigFile"; }
16 };
17
18 #endif