tweaking config.nims

This commit is contained in:
Jaremy Creechley 2023-07-11 00:37:10 -07:00
parent e0083963a9
commit 0ac0aab683
No known key found for this signature in database
GPG Key ID: 4E66FB67B21D3300

View File

@ -16,13 +16,10 @@ when getEnv("NIMBUS_BUILD_SYSTEM") == "yes" and
# matching where the Nim command was invocated. This means that we # matching where the Nim command was invocated. This means that we
# must do all file existance checks with full absolute paths: # must do all file existance checks with full absolute paths:
system.fileExists(currentDir & "nimbus-build-system.paths"): system.fileExists(currentDir & "nimbus-build-system.paths"):
echo "Using Nimbus Build" echo "Using Nimbus Paths"
include "nimbus-build-system.paths" include "nimbus-build-system.paths"
elif fileExists("nimble.paths"): elif fileExists("nimble.paths"):
echo "Using Nimble Build" echo "Using Nimble Paths"
# begin Nimble config (version 1) # begin Nimble config (version 1)
include "nimble.paths" include "nimble.paths"
# end Nimble config # end Nimble config
elif fileExists("atlas.paths"):
echo "Using Atlas Build"
include "atlas.paths"