]> git.tdb.fi Git - builder.git/blobdiff - source/pkgconfigaction.h
Support for creating .pc files
[builder.git] / source / pkgconfigaction.h
diff --git a/source/pkgconfigaction.h b/source/pkgconfigaction.h
new file mode 100644 (file)
index 0000000..294f637
--- /dev/null
@@ -0,0 +1,19 @@
+#ifndef PKGCONFIGACTION_H_
+#define PKGCONFIGACTION_H_
+
+#include "action.h"
+
+class PkgConfig;
+
+/**
+Action for building a PkgConfig target.  I just couldn't come up with a less
+lame name...
+*/
+class PkgConfigAction: public Action
+{
+public:
+       PkgConfigAction(Builder &, const PkgConfig &);
+       int check();
+};
+
+#endif