2017-11-03 12:16:04 +00:00
|
|
|
# Package
|
2020-04-10 05:54:40 +00:00
|
|
|
version = "0.2.6"
|
2015-08-28 15:56:55 +00:00
|
|
|
author = "Andri Lim"
|
|
|
|
description = "PNG encoder and decoder"
|
|
|
|
license = "MIT"
|
2020-04-10 05:54:40 +00:00
|
|
|
skipDirs = @["tests", "docs"]
|
2015-08-28 15:56:55 +00:00
|
|
|
|
2017-11-03 12:16:04 +00:00
|
|
|
# Deps
|
2018-10-02 03:07:05 +00:00
|
|
|
requires "nim >= 0.19.0"
|
2017-11-03 12:16:04 +00:00
|
|
|
|
|
|
|
task tests, "Run tests":
|
2020-04-10 05:54:40 +00:00
|
|
|
exec "nim c -r tests/test_apng.nim"
|
|
|
|
exec "nim c -r tests/test_codec.nim"
|
|
|
|
exec "nim c -r tests/test_suite.nim"
|
|
|
|
exec "nim c -r tests/test_nimz.nim"
|
2020-04-13 11:36:40 +00:00
|
|
|
exec "nim c -r tests/test_filters.nim"
|
2020-04-10 05:54:40 +00:00
|
|
|
|
|
|
|
exec "nim c -r -d:release tests/test_apng.nim"
|
|
|
|
exec "nim c -r -d:release tests/test_codec.nim"
|
|
|
|
exec "nim c -r -d:release tests/test_suite.nim"
|
|
|
|
exec "nim c -r -d:release tests/test_nimz.nim"
|
2020-04-13 11:36:40 +00:00
|
|
|
exec "nim c -r -d:release tests/test_filters.nim"
|
2020-04-10 05:54:40 +00:00
|
|
|
|
|
|
|
exec "nim c -r --gc:arc -d:release tests/test_nimz.nim"
|
2020-04-13 11:36:40 +00:00
|
|
|
exec "nim c -r --gc:arc -d:release tests/test_filters.nim"
|