]> git.tdb.fi Git - builder.git/blob - plugins/msvc/msvcplugin.h
Move the VS project and solution generators to the MSVC plugin
[builder.git] / plugins / msvc / msvcplugin.h
1 #ifndef MSVCPLUGIN_H_
2 #define MSVCPLUGIN_H_
3
4 #include <msp/builder/plugin.h>
5
6 class MsvcPlugin: public Plugin
7 {
8 public:
9         MsvcPlugin(Builder &b): Plugin(b) { }
10
11         void add_tools(Toolchain &, const Architecture &) const override;
12         void create_targets(SourcePackage &) const override;
13 };
14
15 #endif