dodb/dodb.asd

23 lines
671 B
Common Lisp

(defsystem "dodb"
:version "0.1.0"
:author "Philippe PITTOLI"
:license "ISC"
:depends-on ("osicat")
:components ((:module "src"
:components
((:file "util")
(:file "main"))))
:description "When storing simple files directly on the file-system is enough."
:in-order-to ((test-op (test-op "dodb/tests"))))
(defsystem "dodb/tests"
:author "Philippe PITTOLI"
:license "ISC"
:depends-on ("dodb"
"rove")
:components ((:module "tests"
:components
((:file "main"))))
:description "Test system for dodb"
:perform (test-op (op c) (symbol-call :rove :run c)))