]> git.tdb.fi Git - builder.git/blob - source/executable.cpp
Inline simple constructors
[builder.git] / source / executable.cpp
1 #include "builder.h"
2 #include "component.h"
3 #include "executable.h"
4 #include "sourcepackage.h"
5
6 using namespace std;
7 using namespace Msp;
8
9 Executable::Executable(Builder &b, const Component &c, const vector<ObjectFile *> &objs):
10         Binary(b, c, b.get_current_arch().create_filename<Executable>(c.get_name()), objs)
11 {
12         install_location = "bin";
13 }