On Sun, 03 Nov 2013 19:41:30 GMT, Andrej Mitrovic wrote:

On Sun, 03 Nov 2013 19:22:59 GMT, Andrej Mitrovic wrote:

snip

When I use:

"targetPath" : "tests/bin"

It will succeed building the app and it will output it to:

C:\dev\projects\dchip\tests\bin\demo_dub.exe

But for some reason it fails to spawn it:

Error: Failed to spawn new process (The system cannot find the file specified.)

It was a bad interaction with the new "workingDirectory" field, which defaults to "targetPath" - it tried to run "bin\demo_dub.exe" after having already chdir'ed to "bin\". The path is now properly computed relative to the "workingDirectory" (9c55893).