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