]> git.tdb.fi Git - builder.git/blob - source/pkgconfig.h
Replace per-file copyright notices with a single file
[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         virtual const char *get_type() const { return "PkgConfig"; }
15 private:
16         virtual Action *create_action();
17 };
18
19 #endif