X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fimportlibrary.h;h=aac11f94f18ae04c78f907a33f2918f59c9a72b6;hb=HEAD;hp=7f7167b7ed3acdf8d0156cc248b5c070e16b0a23;hpb=650560b14cac4bb35589b5b8db99197c5e1345cc;p=builder.git diff --git a/source/importlibrary.h b/source/importlibrary.h deleted file mode 100644 index 7f7167b..0000000 --- a/source/importlibrary.h +++ /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; - -public: - ImportLibrary(Builder &, const Msp::FS::Path &); - ImportLibrary(Builder &, const Component &, SharedLibrary &, ExportDefinitions &); -private: - static std::string generate_filename(const Component &, const SharedLibrary &); - -public: - virtual const char *get_type() const { return "ImportLibrary"; } - - SharedLibrary *get_shared_library() const { return shared_lib; } -}; - -#endif