X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fsystemtools.cpp;h=c35b4aebf286de7255680ac2d7e2609afdf8c5c8;hb=84da3f6c94dbe7e36aaf088890fda5fcf3b3efb0;hp=77fe2bedb9c2b701ad67f89fc05802de8c2fb1ad;hpb=f5d23e3e6ad425075182982c1ef717cb0873bbdc;p=builder.git diff --git a/source/systemtools.cpp b/source/systemtools.cpp index 77fe2be..c35b4ae 100644 --- a/source/systemtools.cpp +++ b/source/systemtools.cpp @@ -6,6 +6,7 @@ #include "gnulinker.h" #include "mingwdlltool.h" #include "systemtools.h" +#include "vcxprojectgenerator.h" using namespace std; @@ -27,6 +28,10 @@ SystemTools::SystemTools(Builder &builder, const Architecture &arch) add_tool(new GnuLinker(builder, arch)); add_tool(new GnuArchiver(builder, arch)); + if(arch.get_system()=="windows") + { add_tool(new MingwDllTool(builder, arch)); + add_tool(new VcxProjectGenerator(builder)); + } }