1
2
3
4
5
6
7
8
9
10
11
12
|
version = "0.1.0"
author = "nandi"
description = "Fully static Nim binaries, dependencies and all — detects what you link and fetches musl archives from Alpine"
license = "MIT"
srcDir = "src"
bin = @["nimstatic"]
installExt = @["nim"]
requires "nim >= 2.0.0"
task test, "Run the test suite":
exec "nim c -d:ssl --hints:off -r tests/test_nimstatic.nim"
|