]> git.tdb.fi Git - builder.git/blob - source/datacompiler.h
Handle "use"d libraries through build info
[builder.git] / source / datacompiler.h
1 #ifndef DATACOMPILER_H_
2 #define DATACOMPILER_H_
3
4 #include "tool.h"
5
6 class DataCompiler: public Tool
7 {
8 public:
9         DataCompiler(Builder &);
10
11         virtual Target *create_target(const std::list<Target *> &, const std::string &) const;
12         virtual Task *run(const Target &) const;
13 };
14
15 #endif