mirror of
https://github.com/logos-messaging/nim-chat-poc.git
synced 2026-02-16 12:03:08 +00:00
10 lines
295 B
Nim
10 lines
295 B
Nim
import std/os
|
|
|
|
# all vendor subdirectories
|
|
for dir in walkDir(thisDir() / "vendor"):
|
|
if dir.kind == pcDir:
|
|
switch("path", dir.path)
|
|
switch("path", dir.path / "src")
|
|
|
|
switch("path", thisDir() / "vendor/libchat/nim-bindings")
|
|
switch("path", thisDir() / "vendor/libchat/nim-bindings/src") |