mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 01:44:37 +00:00
15 lines
195 B
Nim
15 lines
195 B
Nim
|
|
mode = ScriptMode.Whatif
|
|
|
|
exec "gcc -v"
|
|
|
|
--forceBuild
|
|
|
|
task listDirs, "lists every subdirectory":
|
|
for x in listDirs("."):
|
|
echo "DIR ", x
|
|
|
|
task default, "default target":
|
|
setCommand "c"
|
|
|