diff --git a/nds.nimble b/nds.nimble index e93eae1..44d66f7 100644 --- a/nds.nimble +++ b/nds.nimble @@ -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" \ No newline at end of file + exec "nim c --gc:arc -d:danger -d:ndsprofile --skipProjCfg --skipParentCfg --out:bin/nds src/nds.nim" \ No newline at end of file