X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fpkgconfig.h;h=b4d4d3b9f0194c7b1cc874aaed0528502724853a;hb=242c55b17e6608b29a77ca17a5b677e202a3ca90;hp=20e5fbfaac88380040283198ed7f42cdc4429cee;hpb=77461a8c0e2b5686b04cf15f3a9333b215813992;p=builder.git diff --git a/source/pkgconfig.h b/source/pkgconfig.h index 20e5fbf..b4d4d3b 100644 --- a/source/pkgconfig.h +++ b/source/pkgconfig.h @@ -1,7 +1,7 @@ /* $Id$ This file is part of builder -Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions +Copyright © 2006-2009 Mikko Rasa, Mikkosoft Productions Distributed under the LGPL */ @@ -16,12 +16,13 @@ Creates a .pc file to enable other packages fetch build options with pkg-config. */ class PkgConfig: public Target { -public: - PkgConfig(Builder &, const SourcePackage &); - const char *get_type() const { return "PkgConfig"; } private: const Package &pkg; +public: + PkgConfig(Builder &, const SourcePackage &); + virtual const char *get_type() const { return "PkgConfig"; } +private: virtual Action *create_action(); };