diff options
author | deansher <deansherthompson@gmail.com> | 2019-01-29 05:34:09 -0500 |
---|---|---|
committer | deansher <deansherthompson@gmail.com> | 2019-01-29 05:34:09 -0500 |
commit | c2e6fc0dfbc7dd06fa6adb893f93a1fdd7932a73 (patch) | |
tree | 082c7344176df25e225c0e1f9c97bbb1a1314246 /koch.nim | |
parent | d60f8ab99181ea18cc534728ba4d0470c0ca1bce (diff) | |
parent | a58f5b6023744da9f44e6ab8b1c748002b2bbcc0 (diff) | |
download | Nim-c2e6fc0dfbc7dd06fa6adb893f93a1fdd7932a73.tar.gz |
Merge remote-tracking branch 'upstream/devel' into devel
Diffstat (limited to 'koch.nim')
-rw-r--r-- | koch.nim | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/koch.nim b/koch.nim index d21c5240e..89ee28d5a 100644 --- a/koch.nim +++ b/koch.nim @@ -163,7 +163,7 @@ proc bundleNimsuggest() = nimCompile("nimsuggest/nimsuggest.nim", options = "-d:release") proc buildVccTool() = - nimCompile("tools/vccexe/vccexe.nim") + nimCompileFold("Compile Vcc", "tools/vccexe/vccexe.nim") proc bundleWinTools() = # TODO: consider building under `bin` instead of `.` @@ -208,10 +208,10 @@ proc buildTool(toolname, args: string) = proc buildTools() = bundleNimsuggest() - nimCompile("tools/nimgrep.nim", options = "-d:release") + nimCompileFold("Compile nimgrep", "tools/nimgrep.nim", options = "-d:release") when defined(windows): buildVccTool() - nimCompile("nimpretty/nimpretty.nim", options = "-d:release") - nimCompile("tools/nimfind.nim", options = "-d:release") + nimCompileFold("Compile nimpretty", "nimpretty/nimpretty.nim", options = "-d:release") + nimCompileFold("Compile nimfind", "tools/nimfind.nim", options = "-d:release") proc nsis(latest: bool; args: string) = bundleNimbleExe(latest) |