]> git.tdb.fi Git - builder.git/blob - source/sharedlibrary.cpp
Support building static libraries (but not using them yet)
[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 { }
10