mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
16 lines
399 B
Nim
16 lines
399 B
Nim
|
|
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"
|