]> git.tdb.fi Git - builder.git/blob - source/systemlibrary.h
a0b315acee348c8696fa7378c91981da7d713280
[builder.git] / source / systemlibrary.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 SYSTEMLIBRARY_H_
9 #define SYSTEMLIBRARY_H_
10
11 #include "target.h"
12
13 /**
14 A library that doesn't belong to any known package.
15 */
16 class SystemLibrary: public Target
17 {
18 public:
19         SystemLibrary(Builder &, const std::string &);
20         const char        *get_type() const    { return "SystemLibrary"; }
21         const std::string &get_libname() const { return libname; }
22         Action            *build()             { return 0; }
23 private:
24         std::string libname;
25 };
26
27 #endif