mirror of
https://github.com/logos-messaging/nim-chat-sdk.git
synced 2026-01-02 14:13:07 +00:00
19 lines
502 B
Nim
19 lines
502 B
Nim
# Package
|
|
|
|
version = "0.0.1"
|
|
author = "Waku Chat Team"
|
|
description = "Chat features over Waku"
|
|
license = "MIT"
|
|
srcDir = "src"
|
|
|
|
|
|
# Dependencies
|
|
|
|
requires "nim >= 2.0.0"
|
|
|
|
task buildSharedLib, "Build shared library for C bindings":
|
|
exec "nim c --app:lib --out:../library/c-bindings/libchatsdk.so chat_sdk/chat_sdk.nim"
|
|
|
|
task buildStaticLib, "Build static library for C bindings":
|
|
exec "nim c --app:staticLib --out:../library/c-bindings/libchatsdk.a chat_sdk/chat_sdk.nim"
|