2023-08-11 21:50:45 +00:00
|
|
|
# Package
|
|
|
|
|
|
|
|
version = "0.1.0"
|
2023-08-11 22:08:15 +00:00
|
|
|
author = "Swarmsim Authors"
|
2023-08-11 21:50:45 +00:00
|
|
|
description = "Simple swarm simulator"
|
|
|
|
license = "MIT"
|
2023-08-11 22:08:15 +00:00
|
|
|
srcDir = "."
|
2023-08-11 21:50:45 +00:00
|
|
|
installExt = @["nim"]
|
|
|
|
|
2023-08-11 22:08:15 +00:00
|
|
|
requires "nim >= 1.6.0"
|
2023-08-11 21:50:45 +00:00
|
|
|
|
|
|
|
task test, "Run unit tests":
|
2023-08-11 22:08:15 +00:00
|
|
|
exec "nim c -r tests/all_tests.nim"
|