]> git.tdb.fi Git - builder.git/blob - source/sharedlibrary.cpp
Refactor package configuration
[builder.git] / source / sharedlibrary.cpp
1 #include "component.h"
2 #include "package.h"
3 #include "sharedlibrary.h"
4
5 using namespace std;
6
7 SharedLibrary::SharedLibrary(Builder &b, const Component &c, const list<ObjectFile *> &objs):
8         Executable(b, c, objs),
9         libname(c.get_name())
10 { }
11