]> git.tdb.fi Git - builder.git/blobdiff - source/sourcepackage.cpp
Add ability to generate Visual Studio solution files
[builder.git] / source / sourcepackage.cpp
index c4061a4afbeceae8a153cf45a1b05f0d82530cc3..b98cd75f02c49108e047b8bebc42b2321d1b86bc 100644 (file)
@@ -9,6 +9,7 @@
 #include "binarycomponent.h"
 #include "binarypackage.h"
 #include "builder.h"
+#include "compilecommandsjson.h"
 #include "datapackcomponent.h"
 #include "file.h"
 #include "installcomponent.h"
@@ -18,6 +19,7 @@
 #include "sourcepackage.h"
 #include "tool.h"
 #include "vcxprojectfile.h"
+#include "vssolutionfile.h"
 
 using namespace std;
 using namespace Msp;
@@ -147,8 +149,15 @@ void SourcePackage::do_prepare()
                }
        }
 
+       export_binfo.standards = build_info.standards;
+
        if(arch.get_system()=="windows")
+       {
                new VcxProjectFile(builder, *this);
+               new VsSolutionFile(builder, *this);
+       }
+
+       new CompileCommandsJson(builder, *this);
 }
 
 void SourcePackage::save_caches()