]> git.tdb.fi Git - builder.git/blob - source/pkgconfigaction.h
dc96acd970eb082e2a0c17dc22620a2a4dee15d8
[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         virtual int check();
17 private:
18         std::string prefixify(const std::string &);
19 };
20
21 #endif