diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2017-10-01 23:34:19 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2017-10-01 23:38:23 +0200 |
commit | 02ff5f596c330b68927f843814ecb9b86c2eee67 (patch) | |
tree | 1f141e5d1d1a3090ed9eac64b45ea5735ae0bd97 /koch.nim | |
parent | 7889c03cbc50afaa67e1e0eedb4fdcc577913bcd (diff) | |
download | Nim-02ff5f596c330b68927f843814ecb9b86c2eee67.tar.gz |
implemented new experimental scriptable import mechanism
Diffstat (limited to 'koch.nim')
-rw-r--r-- | koch.nim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/koch.nim b/koch.nim index 6ae45fcb7..6b267ce46 100644 --- a/koch.nim +++ b/koch.nim @@ -262,6 +262,9 @@ proc buildTools(latest: bool) = let nimgrepExe = "bin/nimgrep".exe nimexec "c -o:" & nimgrepExe & " tools/nimgrep.nim" when defined(windows): buildVccTool() + + nimexec "c -o:" & ("bin/nimresolve".exe) & " tools/nimresolve.nim" + buildNimble(latest) proc nsis(args: string) = |