-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsam_protocol.nimble
More file actions
32 lines (24 loc) · 880 Bytes
/
sam_protocol.nimble
File metadata and controls
32 lines (24 loc) · 880 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Package
version = "0.1.1"
author = "Gabben"
description = "I2P SAM Protocol without any IO"
license = "MIT"
srcDir = "src"
skipDirs = @["tests", "examples"]
# Dependencies
requires "nim >= 1.0.0"
task docs, "Generate docs":
rmDir "docs"
exec "nimble doc2 --outdir:docs --project --git.url:https://github.com/gabbhack/sam_protocol --git.commit:master --index:on src/sam_protocol"
task tests, "Run tests":
exec "nimble test"
exec "nimble test -d:release"
exec "nimble test -d:release -d:danger"
when (NimMajor, NimMinor) >= (1, 2):
exec "nimble test --gc:arc"
exec "nimble test --gc:arc -d:release"
exec "nimble test --gc:arc -d:release -d:danger"
when (NimMajor, NimMinor) >= (1, 4):
exec "nimble test --gc:arc"
exec "nimble test --gc:arc -d:release"
exec "nimble test --gc:arc -d:release -d:danger"