X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=plugins%2Fmsvc%2Fmsvcarchiver.h;fp=plugins%2Fmsvc%2Fmsvcarchiver.h;h=89d24c6d406aa513094f9c0485366412ebee7eb6;hb=c8e829c219c65ff8e93b6c7b66212ff0876441c5;hp=0000000000000000000000000000000000000000;hpb=e2c9c3fffcc61a0c102ccf6a7924e2de709092ad;p=builder.git diff --git a/plugins/msvc/msvcarchiver.h b/plugins/msvc/msvcarchiver.h new file mode 100644 index 0000000..89d24c6 --- /dev/null +++ b/plugins/msvc/msvcarchiver.h @@ -0,0 +1,23 @@ +#ifndef MSVCARCHIVER_H_ +#define MSVCARCHIVER_H_ + +#include + +class MicrosoftTools; +class StaticLibrary; + +class MsvcArchiver: public Tool +{ +private: + const MicrosoftTools &ms_tools; + +public: + MsvcArchiver(Builder &, const Architecture &, const MicrosoftTools &); + + Target *create_target(const std::vector &, const std::string &) override; + +private: + static ExternalTask::Arguments _run(const StaticLibrary &, Msp::FS::Path &); +}; + +#endif