mirror of
https://github.com/logos-messaging/nim-sds.git
synced 2026-07-02 22:10:13 +00:00
11 lines
410 B
Nim
11 lines
410 B
Nim
# The package's import root is its srcDir ("sds"), where the API module
|
|
# sds.nim lives. Put it on the path so in-repo consumers (tests/, library/)
|
|
# resolve `import sds` the same way nimble consumers of the package do.
|
|
switch("path", thisDir() & "/sds")
|
|
|
|
# begin Nimble config (version 2)
|
|
--noNimblePath
|
|
when withDir(thisDir(), system.fileExists("nimble.paths")):
|
|
include "nimble.paths"
|
|
# end Nimble config
|