nimbus/nimbus.nimble

23 lines
379 B
Plaintext
Raw Normal View History

2022-06-25 21:53:50 +00:00
# SPDX-FileCopyrightText: 2022 Anna <cyber@sysrq.in>
# SPDX-License-Identifier: CC0-1.0
# Package
2022-07-17 13:10:22 +00:00
version = "1.0.0"
2022-06-25 21:53:50 +00:00
author = "Anna"
2022-07-13 08:19:57 +00:00
description = "A Nim build system"
2022-06-25 21:53:50 +00:00
license = "BSD"
bin = @["nimbus"]
srcDir = "src"
2022-06-29 04:33:05 +00:00
installExt = @["nim"]
2022-06-25 21:53:50 +00:00
# Dependencies
requires "nim >= 0.13.0"
2022-06-29 04:33:05 +00:00
# Tasks
task test, "Test nimbus with Testament":
exec("testament all")