X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fsourcepackage.cpp;h=b98cd75f02c49108e047b8bebc42b2321d1b86bc;hb=eabb3f5b9b0d32adda71d4dd7e56796f7ea3bdd2;hp=0a69d7aa22f058641980b03768b8ccce030babb0;hpb=f5d23e3e6ad425075182982c1ef717cb0873bbdc;p=builder.git diff --git a/source/sourcepackage.cpp b/source/sourcepackage.cpp index 0a69d7a..b98cd75 100644 --- a/source/sourcepackage.cpp +++ b/source/sourcepackage.cpp @@ -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" @@ -17,6 +18,8 @@ #include "sourcegenerator.h" #include "sourcepackage.h" #include "tool.h" +#include "vcxprojectfile.h" +#include "vssolutionfile.h" using namespace std; using namespace Msp; @@ -145,6 +148,16 @@ void SourcePackage::do_prepare() builder.get_build_graph().get_target("install")->add_dependency(*builder.get_toolchain().get_tool("CP").create_target(*pc)); } } + + 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()