new danger option in nimble

This commit is contained in:
prod2 2022-12-03 20:39:19 +01:00
parent 18c71f41fe
commit 32d643bba0
1 changed files with 4 additions and 1 deletions

View File

@ -22,5 +22,8 @@ task test, "run tests":
task debug, "build nds for debugging":
exec "nim c --gc:arc -d:debug --skipProjCfg --skipParentCfg --out:bin/nds src/nds.nim"
task danger, "build nds with -d:danger":
exec "nim c --gc:arc -d:danger --skipProjCfg --skipParentCfg --out:bin/nds src/nds.nim"
task profile, "build nds with internal profiler":
exec "nim c --gc:arc -d:danger -d:ndsprofile --out:bin/nds src/nds.nim"
exec "nim c --gc:arc -d:danger -d:ndsprofile --skipProjCfg --skipParentCfg --out:bin/nds src/nds.nim"