From 32d643bba0e7ab5a5f4ad75afdb3318bc24a2d78 Mon Sep 17 00:00:00 2001 From: prod2 <95874442+prod2@users.noreply.github.com> Date: Sat, 3 Dec 2022 20:39:19 +0100 Subject: [PATCH] new danger option in nimble --- nds.nimble | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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