]> git.tdb.fi Git - builder.git/blobdiff - source/importlibrary.h
File Tool's executable before calling do_prepare
[builder.git] / source / importlibrary.h
index 26c116da5707e880ebf00e9bc96e3031128a92d3..1c5d682a3be001a61fc2003b4485eeec94a94686 100644 (file)
@@ -13,10 +13,10 @@ platforms with no true dynamic linking support.
 class ImportLibrary: public FileTarget
 {
 private:
-       SharedLibrary *shared_lib;
+       SharedLibrary *shared_lib = 0;
 
 public:
-       ImportLibrary(Builder &, const Msp::FS::Path &);
+       ImportLibrary(Builder &b, const Msp::FS::Path &p): FileTarget(b, p) { }
        ImportLibrary(Builder &, const Component &, SharedLibrary &, ExportDefinitions &);
 private:
        static std::string generate_filename(const Component &, const SharedLibrary &);