]> git.tdb.fi Git - builder.git/blobdiff - source/staticlibrary.h
Get rid of the Library and SystemLibrary classes as unnecessary abstractions
[builder.git] / source / staticlibrary.h
index a4dbf59d5c7f80c82e438a0a62b8005d604bd573..60b900587ecc22393070b8de7979967dfb20bdb7 100644 (file)
@@ -1,7 +1,7 @@
 #ifndef STATICLIBRARY_H_
 #define STATICLIBRARY_H_
 
-#include "library.h"
+#include "filetarget.h"
 
 class Component;
 class ObjectFile;
@@ -9,9 +9,10 @@ class ObjectFile;
 /**
 A static library target.
 */
-class StaticLibrary: public Library
+class StaticLibrary: public FileTarget
 {
 public:
+       StaticLibrary(Builder &, const Msp::FS::Path &);
        StaticLibrary(Builder &, const Component &, const std::list<ObjectFile *> &);
 
        virtual const char *get_type() const { return "StaticLibrary"; }