2017-11-03 14:16:04 +02:00
|
|
|
# Package
|
2018-10-02 10:07:05 +07:00
|
|
|
version = "0.2.4"
|
2015-08-28 22:56:55 +07:00
|
|
|
author = "Andri Lim"
|
|
|
|
description = "PNG encoder and decoder"
|
|
|
|
license = "MIT"
|
2018-10-05 11:50:25 +07:00
|
|
|
skipDirs = @["apng", "suite", "tester", "docs"]
|
2015-08-28 22:56:55 +07:00
|
|
|
|
2017-11-03 14:16:04 +02:00
|
|
|
# Deps
|
2018-10-02 10:07:05 +07:00
|
|
|
requires "nim >= 0.19.0"
|
2017-11-03 14:16:04 +02:00
|
|
|
|
|
|
|
task tests, "Run tests":
|
2018-10-05 11:50:25 +07:00
|
|
|
withDir("tester"):
|
|
|
|
exec "nim c -r test.nim"
|
|
|
|
exec "nim c -r testCodec.nim"
|
|
|
|
exec "nim c -r testSuite.nim"
|
2018-10-09 10:50:02 +07:00
|
|
|
|
|
|
|
exec "nim c -r -d:release test.nim"
|
|
|
|
exec "nim c -r -d:release testCodec.nim"
|
|
|
|
exec "nim c -r -d:release testSuite.nim"
|