summary refs log tree commit diff stats
path: root/install_tools.nims
blob: 6ecc545a5ae93aeae58a9485a3e9186bc2f9759a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import ospaths

mode = ScriptMode.Verbose

let nimbleExe = "./bin/nimble".toExe
selfExec "c --noNimblePath -p:compiler -o:" & nimbleExe &
    " dist/nimble/src/nimble.nim"

let nimsugExe = "./bin/nimsuggest".toExe
selfExec "c --noNimblePath -p:compiler -o:" & nimsugExe &
    " dist/nimsuggest/nimsuggest.nim"

let nimgrepExe = "./bin/nimgrep".toExe
selfExec "c -o:./bin/nimgrep tools/nimgrep.nim"