Put project nimcache in subdir

This commit is contained in:
Joey Yakimowich-Payne 2018-07-04 20:46:14 +09:00
commit e7e1a66a1e

View file

@ -108,7 +108,7 @@ proc buildElf(buildInfo: BuildInfo): string =
result = buildInfo.outDir/buildInfo.name & ".elf"
var args = " --out=" & quoteShell(result)
args &= " --nimcache=nimcache_" & $buildInfo.name
args &= " --nimcache=nimcache/" & $buildInfo.name
if buildInfo.release:
args &= " -d:release"
if buildInfo.force: