]> git.tdb.fi Git - builder.git/blobdiff - plugins/base/baseplugin.cpp
Move the VS project and solution generators to the MSVC plugin
[builder.git] / plugins / base / baseplugin.cpp
index b43c851fbdf63cb6bab239a8fa9f633b90cffa5e..96ce2faed0c390bd67177f854b3849e102381f9d 100644 (file)
@@ -4,8 +4,6 @@
 #include "basetools.h"
 #include "compilecommandsjson.h"
 #include "pkgconfigfile.h"
-#include "vcxprojectfile.h"
-#include "vssolutionfile.h"
 
 void BasePlugin::add_tools(Toolchain &toolchain, const Architecture &) const
 {
@@ -22,12 +20,6 @@ void BasePlugin::create_targets(SourcePackage &spkg) const
                builder.get_build_graph().get_target("install")->add_dependency(*builder.get_toolchain().get_tool("CP").create_target(*pc));
        }
 
-       if(native_arch.get_system()=="windows")
-       {
-               new VcxProjectFile(builder, spkg);
-               new VsSolutionFile(builder, spkg);
-       }
-
        new CompileCommandsJson(builder, spkg);
 }