Began implementing the funge field
This commit is contained in:
parent
4a296c28ee
commit
9a5ff5f233
6 changed files with 135 additions and 0 deletions
24
nimfunge98.nimble
Normal file
24
nimfunge98.nimble
Normal file
|
@ -0,0 +1,24 @@
|
|||
# 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 integration, "Runs the test suite":
|
||||
exec "testament all"
|
||||
|
||||
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 tests/megatest.nim"
|
Reference in a new issue