]> git.tdb.fi Git - builder.git/blobdiff - source/staticlibrary.cpp
Refactor transitive dependencies to work on all targets
[builder.git] / source / staticlibrary.cpp
diff --git a/source/staticlibrary.cpp b/source/staticlibrary.cpp
deleted file mode 100644 (file)
index 29abc0d..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-#include "builder.h"
-#include "component.h"
-#include "objectfile.h"
-#include "sourcepackage.h"
-#include "staticlibrary.h"
-
-using namespace std;
-using namespace Msp;
-
-StaticLibrary::StaticLibrary(Builder &b, const FS::Path &p):
-       FileTarget(b, p)
-{ }
-
-StaticLibrary::StaticLibrary(Builder &b, const Component &c, const list<ObjectFile *> &objs):
-       FileTarget(b, c.get_package(), c.get_package().get_output_directory()/generate_filename(c))
-{
-       component = &c;
-       for(list<ObjectFile *>::const_iterator i=objs.begin(); i!=objs.end(); ++i)
-               add_dependency(**i);
-
-       install_location = "lib";
-}
-
-string StaticLibrary::generate_filename(const Component &comp)
-{
-       const Architecture &arch = comp.get_package().get_builder().get_current_arch();
-       return arch.get_static_library_patterns().front().apply(comp.get_name());
-}