Switch to the new style of importing vendor packages (#4218)
This commit is contained in:
parent
576b999387
commit
3f90fe8a7d
|
@ -70,3 +70,6 @@ resttest0_data
|
|||
# Nimble user files
|
||||
nimble.develop
|
||||
nimble.paths
|
||||
|
||||
# nimbus-build-system files
|
||||
nimbus-build-system.paths
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
import strutils
|
||||
|
||||
--noNimblePath
|
||||
|
||||
if getEnv("NIMBUS_BUILD_SYSTEM") == "yes" and
|
||||
system.fileExists("nimbus-build-system.paths"):
|
||||
include "nimbus-build-system.paths"
|
||||
|
||||
const nimCachePathOverride {.strdefine.} = ""
|
||||
when nimCachePathOverride == "":
|
||||
when defined(release):
|
||||
|
|
Loading…
Reference in New Issue