]> 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 e985be7..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-#ifndef IMPORTLIBRARY_H_
-#define IMPORTLIBRARY_H_
-
-#include "filetarget.h"
-
-class ExportDefinitions;
-class SharedLibrary;
-
-/**
-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
-{
-private:
-       SharedLibrary *shared_lib = 0;
-
-public:
-       ImportLibrary(Builder &, const Msp::FS::Path &);
-       ImportLibrary(Builder &, const Component &, SharedLibrary &, ExportDefinitions &);
-private:
-       static std::string generate_filename(const Component &, const SharedLibrary &);
-
-public:
-       const char *get_type() const override { return "ImportLibrary"; }
-
-       SharedLibrary *get_shared_library() const { return shared_lib; }
-};
-
-#endif