]> git.tdb.fi Git - builder.git/blob - source/executable.cpp
Rework the Target class hierarchy
[builder.git] / source / executable.cpp
1 /* $Id$
2
3 This file is part of builder
4 Copyright © 2009  Mikko Rasa, Mikkosoft Productions
5 Distributed under the LGPL
6 */
7
8 #include "component.h"
9 #include "executable.h"
10 #include "sourcepackage.h"
11
12 Executable::Executable(Builder &b, const Component &c, const std::list<ObjectFile *> &objs):
13         FileTarget(b, &c.get_package(), generate_target_path(c)),
14         Binary(b, c, objs)
15 { }