]> git.tdb.fi Git - builder.git/blob - source/datacompiler.cpp
Have the linker specify symlinks for installed libraries
[builder.git] / source / datacompiler.cpp
1 #include <stdexcept>
2 #include "datacompiler.h"
3
4 using namespace std;
5
6 DataCompiler::DataCompiler(Builder &b):
7         Tool(b, "DATA")
8 {
9 }
10
11 Target *DataCompiler::create_target(const list<Target *> &sources, const string &) const
12 {
13         if(sources.size()!=1)
14                 throw invalid_argument("DataCompiler::create_target");
15         throw runtime_error("Not implemented");
16         //File &source = dynamic_cast<File &>(sources.front());
17         //return new ::DataFile(
18 }
19
20 Task *DataCompiler::run(const Target &) const
21 {
22         throw runtime_error("Not implemented");
23 }