(Still not working 100%, but getting close.) Additionally, start on the README, fix some type member visibility, add some additional tests, tag some FIXMEs for where type conversions will take place, and add `#rewind` for the query iterator. FossilOrigin-Name: 490f27a4792d5243d82d90dcb12be1074c945c74d7fa63dd5baaf942ac42d7c9
28 lines
783 B
Nim
28 lines
783 B
Nim
# 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"
|
|
|
|
task test, "Run the test suite.":
|
|
exec "testament --megatest:off all"
|
|
exec "testament html"
|
|
|
|
task clean, "Remove all non-repository artifacts.":
|
|
exec "fossil clean -x"
|
|
|
|
task docs, "Generate automated documentation.":
|
|
exec "nim doc --project --outdir:docs src/kuzu.nim"
|
|
exec "nim md2html --project --outdir:docs README.md"
|
|
|