On Sat, 23 Nov 2013 21:28:10 GMT, Mikko wrote:

I need to get this linking stage command:

dmd -ofapp.exe temp.obj -L/SUBSYSTEM:WINDOWS -g

To this:

dmd -ofapp.exe temp.obj -L/SUBSYSTEM:WINDOWS app.res -g

How can I add the "app.res" without having "-L" put in front of it?

Thanks :)

I've added "res" to the file extensions that will be passed to the compiler at the linking stage. So using the latest GIT master, "sourceFiles-windows": "app.res" should now do the trick (efa75dd).