]> git.tdb.fi Git - builder.git/blobdiff - source/importlibrary.h
Refactor transitive dependencies to work on all targets
[builder.git] / source / importlibrary.h
diff --git a/source/importlibrary.h b/source/importlibrary.h
deleted file mode 100644 (file)
index 86d26f4..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-#ifndef IMPORTLIBRARY_H_
-#define IMPORTLIBRARY_H_
-
-#include "filetarget.h"
-
-/**
-A special case of static library which pulls in a shared library.  Used on
-platforms with no true dynamic linking support.
-*/
-class ImportLibrary: public FileTarget
-{
-public:
-       ImportLibrary(Builder &, const Msp::FS::Path &);
-
-       virtual const char *get_type() const { return "ImportLibrary"; }
-};
-
-#endif