2018-11-02 05:10:58 +00:00
|
|
|
packageName = "snappy"
|
|
|
|
version = "0.1.0"
|
|
|
|
author = "Andri Lim"
|
|
|
|
description = "Nim implementation of snappy compression algorithm"
|
|
|
|
license = "MIT"
|
|
|
|
skipDirs = @["tests"]
|
|
|
|
|
|
|
|
requires: "nim >= 0.19.0"
|
|
|
|
|
|
|
|
task test, "Run all tests":
|
2018-11-02 14:48:41 +00:00
|
|
|
exec "nim c --passL:\"-lsnappy -L./tests -lstdc++\" -r tests/test"
|
|
|
|
exec "nim c --passL:\"-lsnappy -L./tests -lstdc++\" -d:release -r tests/test"
|