]> git.tdb.fi Git - builder.git/blobdiff - plugins/msvc/microsofttools.cpp
Move the VS project and solution generators to the MSVC plugin
[builder.git] / plugins / msvc / microsofttools.cpp
index 0370f455d34b5c6a0bae7c1720bd0fa5de922354..03905b6584aeebbebd2ef473e35b5148b50f4e4c 100644 (file)
@@ -10,6 +10,8 @@
 #include "msvcarchiver.h"
 #include "msvccompiler.h"
 #include "msvclinker.h"
+#include "vcxprojectgenerator.h"
+#include "vssolutiongenerator.h"
 
 using namespace std;
 using namespace Msp;
@@ -25,6 +27,9 @@ MicrosoftTools::MicrosoftTools(Builder &builder, const Architecture &arch):
        add_tool(new MsvcCompiler(builder, arch, "CXX", *this));
        add_tool(new MsvcLinker(builder, arch, *this));
        add_tool(new MsvcArchiver(builder, arch, *this));
+
+       add_tool(new VcxProjectGenerator(builder));
+       add_tool(new VsSolutionGenerator(builder));
 }
 
 void MicrosoftTools::find_vc_bin_dir(Builder &builder, const Architecture &arch)