]> git.tdb.fi Git - builder.git/blob - source/pkgconfigaction.h
Add Id tag to all files
[builder.git] / source / pkgconfigaction.h
1 /* $Id$
2
3 This file is part of builder
4 Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions
5 Distributed under the LGPL
6 */
7
8 #ifndef PKGCONFIGACTION_H_
9 #define PKGCONFIGACTION_H_
10
11 #include "action.h"
12
13 class PkgConfig;
14
15 /**
16 Action for building a PkgConfig target.  I just couldn't come up with a less
17 lame name...
18 */
19 class PkgConfigAction: public Action
20 {
21 public:
22         PkgConfigAction(Builder &, const PkgConfig &);
23         int check();
24 };
25
26 #endif