From bb775233299c3bbfb0f339ee436c6b64e9b73684 Mon Sep 17 00:00:00 2001 From: Jaremy Creechley Date: Wed, 12 Jul 2023 19:00:12 -0700 Subject: [PATCH] rework nimble tests --- config.nims | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/config.nims b/config.nims index a8dac2e..d10034d 100644 --- a/config.nims +++ b/config.nims @@ -18,9 +18,11 @@ when getEnv("NIMBUS_BUILD_SYSTEM") == "yes" and system.fileExists(currentDir & "nimbus-build-system.paths"): echo "Using Nimbus Paths" include "nimbus-build-system.paths" +elif withDir(thisDir(), system.fileExists("nimble.paths")): + echo "Using Nimble Paths" # begin Nimble config (version 2) +--noNimblePath when withDir(thisDir(), system.fileExists("nimble.paths")): - --noNimblePath - echo "Using Nimble Paths" + include "nimble.paths" # end Nimble config