2025-03-15 20:26:58 +00:00
|
|
|
# vim: set et sta sw=4 ts=4 :
|
|
|
|
|
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
author = "Mahlon E. Smith"
|
|
|
|
|
description = "Kuzu is an embedded graph database built for query speed and scalability."
|
|
|
|
|
license = "MIT"
|
|
|
|
|
srcDir = "src"
|
|
|
|
|
|
|
|
|
|
requires "nim ^= 2.0.0"
|
|
|
|
|
|
|
|
|
|
# Development dependencies.
|
|
|
|
|
#requires "futhark ^= 0.15.0"
|
|
|
|
|
#requires "zip ^= 0.3.1"
|
|
|
|
|
|
|
|
|
|
task makewrapper, "Generate the C wrapper using Futhark":
|
|
|
|
|
exec "nim c -d:futharkWrap --outdir=. src/kuzu.nim"
|
|
|
|
|
|
2025-03-18 02:21:06 +00:00
|
|
|
task test, "Run the test suite.":
|
|
|
|
|
exec "testament all"
|
|
|
|
|
exec "testament html"
|
|
|
|
|
|
|
|
|
|
task clean, "Remove all non-critical artifacts.":
|
|
|
|
|
exec "fossil clean --disable-undo --dotfiles --emptydirs -f -v"
|
|
|
|
|
|