30 lines
1.4 KiB
Plaintext
30 lines
1.4 KiB
Plaintext
|
(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))))
|
||
|
|