]> git.tdb.fi Git - builder.git/blob - source/sharedlibrary.cpp
Add Id tag to all files
[builder.git] / source / sharedlibrary.cpp
1 /* $Id$
2
3 This file is part of builder
4 Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions
5 Distributed under the LGPL
6 */
7
8 #include "component.h"
9 #include "package.h"
10 #include "sharedlibrary.h"
11
12 using namespace std;
13
14 SharedLibrary::SharedLibrary(Builder &b, const Component &c, const list<ObjectFile *> &objs):
15         Executable(b, c, objs),
16         libname(c.get_name())
17 { }
18