]> git.tdb.fi Git - builder.git/blob - source/msvcarchiver.h
Redesign how tools are run
[builder.git] / source / msvcarchiver.h
1 #ifndef MSVCARCHIVER_H_
2 #define MSVCARCHIVER_H_
3
4 #include "tool.h"
5
6 class MicrosoftTools;
7 class StaticLibrary;
8
9 class MsvcArchiver: public Tool
10 {
11 private:
12         const MicrosoftTools &ms_tools;
13
14 public:
15         MsvcArchiver(Builder &, const Architecture &, const MicrosoftTools &);
16
17         Target *create_target(const std::vector<Target *> &, const std::string &) override;
18
19 private:
20         static Task *_run(const StaticLibrary &);
21 };
22
23 #endif