mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 22:06:25 +00:00
f3c2331fc6
- Update README for macos - Add `nimble install` step to README - Update makefile for macos build to use `.dylib`
8 lines
280 B
Makefile
8 lines
280 B
Makefile
SHELL := bash
|
|
|
|
build:
|
|
nim c -d:release -L:libstatus.a -L:-lm --outdir:. src/nim_status_client.nim
|
|
|
|
build-osx:
|
|
nim c -d:release -L:libstatus.dylib -L:-lm -L:"-framework Foundation -framework Security -framework IOKit -framework CoreServices" --outdir:. src/nim_status_client.nim
|