X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fsourcepackage.cpp;h=b98cd75f02c49108e047b8bebc42b2321d1b86bc;hb=eabb3f5b9b0d32adda71d4dd7e56796f7ea3bdd2;hp=1a23c4704d04c963677e8036a45b940a3c1467f5;hpb=8222bc867676a07f17b5d0d2ea9bff608151134b;p=builder.git diff --git a/source/sourcepackage.cpp b/source/sourcepackage.cpp index 1a23c47..b98cd75 100644 --- a/source/sourcepackage.cpp +++ b/source/sourcepackage.cpp @@ -19,6 +19,7 @@ #include "sourcepackage.h" #include "tool.h" #include "vcxprojectfile.h" +#include "vssolutionfile.h" using namespace std; using namespace Msp; @@ -148,8 +149,13 @@ 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); }