]> git.tdb.fi Git - builder.git/blob - plugins/msvc/vssolutiongenerator.h
Move the VS project and solution generators to the MSVC plugin
[builder.git] / plugins / msvc / vssolutiongenerator.h
1 #ifndef VSSOLUTIONGENERATOR_H_
2 #define VSSOLUTIONGENERATOR_H_
3
4 #include <msp/builder/tool.h>
5
6 class VsSolutionFile;
7
8 class VsSolutionGenerator: public Tool
9 {
10 public:
11         VsSolutionGenerator(Builder &);
12
13         Target *create_target(const std::vector<Target *> &, const std::string &) override;
14
15 private:
16         static bool _run(const VsSolutionFile &);
17 };
18
19 #endif