lizfcm/cl/lizfcm.asd
2023-09-07 12:19:32 -06:00

30 lines
1.4 KiB
Common Lisp

(asdf:defsystem "lizfcm"
:version "0.1.0"
:author "Elizabeth Hunt"
:license "MIT"
:components ((:module "src"
:components
((:module "utils"
:components
((:file "within-range" :depends-on ("package"))
(:file "package")))
(:module "approx"
:components
((:file "derivative" :depends-on ("package"))
(:file "package")))))))
(asdf:defsystem "lizfcm/tests"
:author "Elizabeth Hunt"
:license "MIT"
:depends-on (:fiveam
:lizfcm)
:components ((:module "tests"
:components
((:file "approx" :depends-on ("suite"))
(:file "suite"))))
:perform (asdf:test-op (o c) (uiop:symbol-call
:fiveam :run!
(uiop:find-symbol* :lizfcm-test-suite :lizfcm/tests))))