mirror of
https://github.com/logos-messaging/nim-chat-sdk.git
synced 2026-01-05 07:33:07 +00:00
22 lines
669 B
Nim
22 lines
669 B
Nim
# Package
|
|
|
|
version = "0.0.1"
|
|
author = "Waku Chat Team"
|
|
description = "Chat features over Waku"
|
|
license = "MIT"
|
|
srcDir = "src"
|
|
|
|
### Dependencies
|
|
requires "nim >= 2.2.4",
|
|
"chronicles", "chronos", "db_connector",
|
|
"https://github.com/waku-org/token_bucket.git"
|
|
|
|
task buildSharedLib, "Build shared library for C bindings":
|
|
exec "nim c --mm:refc --app:lib --out:../library/c-bindings/libchatsdk.so chat_sdk/chat_sdk.nim"
|
|
|
|
task buildStaticLib, "Build static library for C bindings":
|
|
exec "nim c --mm:refc --app:staticLib --out:../library/c-bindings/libchatsdk.a chat_sdk/chat_sdk.nim"
|
|
|
|
task migrate, "Run database migrations":
|
|
exec "nim c -r apps/run_migration.nim"
|