23 lines
671 B
Plaintext
23 lines
671 B
Plaintext
|
(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)))
|