X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fsystemlibrary.h;h=2b56f4cf61f41e22822890e8f96d9ccdf88d8844;hb=be8a901dfc026f61db46d5d64a41cecc619bc97d;hp=bd554296b8b8cda181fc480dad907342306b2850;hpb=b0eb979b0dc79269cb3bb5bb2e67ef4e80689cfe;p=builder.git diff --git a/source/systemlibrary.h b/source/systemlibrary.h index bd55429..2b56f4c 100644 --- a/source/systemlibrary.h +++ b/source/systemlibrary.h @@ -1,14 +1,28 @@ +/* $Id$ + +This file is part of builder +Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions +Distributed under the LGPL +*/ + #ifndef SYSTEMLIBRARY_H_ #define SYSTEMLIBRARY_H_ #include "target.h" +/** +A library that doesn't belong to any known package. +*/ class SystemLibrary: public Target { public: - SystemLibrary(Builder &b, const std::string &n): Target(b,0,n) { } - const char *get_type() const { return "SystemLibrary"; } - Action *build() { return 0; } + SystemLibrary(Builder &, const std::string &); + const char *get_type() const { return "SystemLibrary"; } + const std::string &get_libname() const { return libname; } +private: + std::string libname; + + virtual Action *create_action() { return 0; } }; #endif