]> git.tdb.fi Git - builder.git/blob - source/systemlibrary.h
Include libmode in library lookup hash
[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 private:
23         std::string libname;
24
25         virtual Action    *create_action()     { return 0; }
26 };
27
28 #endif