landakram.stumpwm-prescient/stumpwm-prescient.asd
Mark Hudnall ff293c8e88 Initial commit
prescient without persistence
2021-03-24 23:03:34 -07:00

22 lines
602 B
Common Lisp

(defsystem "stumpwm-prescient"
:version "0.1.0"
:author ""
:license ""
:depends-on (:stumpwm)
:components ((:module "src"
:components
((:file "main"))))
:description ""
:in-order-to ((test-op (test-op "stumpwm-prescient/tests"))))
(defsystem "stumpwm-prescient/tests"
:author ""
:license ""
:depends-on ("stumpwm-prescient"
"rove")
:components ((:module "tests"
:components
((:file "main"))))
:description "Test system for stumpwm-prescient"
:perform (test-op (op c) (symbol-call :rove :run c)))