[Mingw-w64-public] Is there a way to control the output file format of windres directly during building wx?

2013-06-04 Thread zhangxinghai
hello I find there is no way to control the output file format of windres directly when I build wx. If I use mingw32-make under cmd,I must manually modify makefile.gcc,add rcflags to every windres command. If I use msys,I also have no way to directly do that using configure, ../../configure

Re: [Mingw-w64-public] Is there a way to control the output file format of windres directly during building wx?

2013-06-04 Thread Ruben Van Boxem
2013/6/4 zhangxinghai zxh19750...@163.com hello I find there is no way to control the output file format of windres directly when I build wx. If I use mingw32-make under cmd,I must manually modify makefile.gcc,add rcflags to every windres command. If I use msys,I also have no way to

Re: [Mingw-w64-public] Is there a way to control the output file format of windres directly during building wx?

2013-06-04 Thread Ray Donnelly
You can setup wrapper scripts to do this sort of thing. Many projects take this approach. Personally I prefer doing this and being able to use multilib toolchains, but each to their own! Sample contents would be something like: #!/bin/bash exec /mingw/bin/windres -F pe-i386 ${@} On Tue, Jun