X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fimportlibrary.h;h=99db24d26fac2a0a1134f94d6cc37f0a598fed95;hb=4ba3ef9601166127d0782b3e6a3352b71db7ccc9;hp=86d26f45d201981f52f82f2c4d22bb245fefa71f;hpb=728b2f65fadd5fb5f000d908efa414027123f964;p=builder.git diff --git a/source/importlibrary.h b/source/importlibrary.h index 86d26f4..99db24d 100644 --- a/source/importlibrary.h +++ b/source/importlibrary.h @@ -3,16 +3,25 @@ #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 &, ExportDefinitions &); virtual const char *get_type() const { return "ImportLibrary"; } + + SharedLibrary *get_shared_library() const { return shared_lib; } }; #endif