]> git.tdb.fi Git - builder.git/blobdiff - source/pkgconfig.h
Split Binary filename generation to Executable and SharedLibrary
[builder.git] / source / pkgconfig.h
index b4d4d3b9f0194c7b1cc874aaed0528502724853a..4b2505dcefa6213e9ccfef953c878f3771aaf6d4 100644 (file)
@@ -1,29 +1,18 @@
-/* $Id$
-
-This file is part of builder
-Copyright © 2006-2009  Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
 #ifndef PKGCONFIG_H_
 #define PKGCONFIG_H_
 
 #include "sourcepackage.h"
-#include "target.h"
+#include "filetarget.h"
 
 /**
 Creates a .pc file to enable other packages fetch build options with pkg-config.
 */
-class PkgConfig: public Target
+class PkgConfig: public FileTarget
 {
-private:
-       const Package &pkg;
-
 public:
        PkgConfig(Builder &, const SourcePackage &);
+
        virtual const char *get_type() const { return "PkgConfig"; }
-private:
-       virtual Action *create_action();
 };
 
 #endif