Files
k8splayground/k8splayground.asd
Adam Mohammed 00d2b69b46 init
2023-04-08 20:41:50 -04:00

22 lines
607 B
Common Lisp

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