]> git.tdb.fi Git - builder.git/blob - source/pkgconfigaction.h
Support for creating .pc files
[builder.git] / source / pkgconfigaction.h
1 #ifndef PKGCONFIGACTION_H_
2 #define PKGCONFIGACTION_H_
3
4 #include "action.h"
5
6 class PkgConfig;
7
8 /**
9 Action for building a PkgConfig target.  I just couldn't come up with a less
10 lame name...
11 */
12 class PkgConfigAction: public Action
13 {
14 public:
15         PkgConfigAction(Builder &, const PkgConfig &);
16         int check();
17 };
18
19 #endif