X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fsharedlibrary.cpp;h=5c2d26fea27f799521c6697fc3803db959ea23f4;hb=66d1078c04849ec17a7343d0494d6ed087e04318;hp=25034f3fcd0245bf1a8d848f81d8fba413744c09;hpb=242c55b17e6608b29a77ca17a5b677e202a3ca90;p=builder.git diff --git a/source/sharedlibrary.cpp b/source/sharedlibrary.cpp index 25034f3..5c2d26f 100644 --- a/source/sharedlibrary.cpp +++ b/source/sharedlibrary.cpp @@ -6,13 +6,13 @@ Distributed under the LGPL */ #include "component.h" -#include "package.h" #include "sharedlibrary.h" +#include "sourcepackage.h" using namespace std; SharedLibrary::SharedLibrary(Builder &b, const Component &c, const list &objs): - Executable(b, c, objs), - libname(c.get_name()) + FileTarget(b, &c.get_package(), generate_target_path(c)), + Binary(b, c, objs), + Library(b, &c.get_package(), path, c.get_name()) { } -