]> git.tdb.fi Git - builder.git/blob - source/systemlibrary.h
Add command line options (not all of them work yet)
[builder.git] / source / systemlibrary.h
1 #ifndef SYSTEMLIBRARY_H_
2 #define SYSTEMLIBRARY_H_
3
4 #include "target.h"
5
6 class SystemLibrary: public Target
7 {
8 public:
9         SystemLibrary(Builder &b, const std::string &n): Target(b,0,n) { }
10         const char *get_type() const { return "SystemLibrary"; }
11         void find_depends() { }
12         Action *build() { return 0; }
13 };
14
15 #endif