]> git.tdb.fi Git - builder.git/blob - source/systemlibrary.h
Add comments
[builder.git] / source / systemlibrary.h
1 #ifndef SYSTEMLIBRARY_H_
2 #define SYSTEMLIBRARY_H_
3
4 #include "target.h"
5
6 /**
7 A library that doesn't belong to any known package.
8 */
9 class SystemLibrary: public Target
10 {
11 public:
12         SystemLibrary(Builder &b, const std::string &n): Target(b,0,n) { }
13         const char *get_type() const { return "SystemLibrary"; }
14         Action *build() { return 0; }
15 };
16
17 #endif