Archived
1
0
Fork 0
This repository has been archived on 2025-03-10. You can view files and clone it, but cannot push or open issues or pull requests.
nimfunge98/nimfunge98.nimble

25 lines
633 B
Nim

# Package
version = "0.1.0"
author = "Julien Dessaux"
description = "A Funge-98 interpreter written in nim"
license = "EUPL-1.2"
srcDir = "src"
bin = @["nimfunge98"]
# Dependencies
requires "nim >= 1.4.8"
# Tasks
task test, "Runs the test suite":
exec "testament pattern \"tests/*.nim\""
task coverage, "Run all tests and calculate coverage":
exec "coco --target 'tests/**/*.nim' --cov '!tests,!nimcache'"
task clean, "Clean":
exec "rm -rf coverage lcov.info nimcache"
exec "rm -rf outputGotten.txt testresults tests/megatest.nim"
exec "find tests/ -type f -executable -delete"