diff options
author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2023-10-09 21:37:44 -0600 |
---|---|---|
committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2023-10-09 21:37:44 -0600 |
commit | e46e5eee74af75aa1123b2370ff2f4587f4adc2a (patch) | |
tree | ae793dd22176613282e41ce6d15f481c072a8a57 /lizfcm.asd | |
parent | adda6869cb2a07984b48c39fcd70ee76449c353d (diff) | |
download | cmath-e46e5eee74af75aa1123b2370ff2f4587f4adc2a.tar.gz cmath-e46e5eee74af75aa1123b2370ff2f4587f4adc2a.zip |
flatten directory structure to appease dr koebbe
Diffstat (limited to 'lizfcm.asd')
-rw-r--r-- | lizfcm.asd | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/lizfcm.asd b/lizfcm.asd deleted file mode 100644 index 3e8c289..0000000 --- a/lizfcm.asd +++ /dev/null @@ -1,39 +0,0 @@ -(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 "table" :depends-on ("package")) - (:file "package"))) - (:module "approx" - :components - ((:file "maceps" :depends-on ("package")) - (:file "derivative" :depends-on ("package")) - (:file "package"))) - (:module "vector" - :components - ((:file "distance" :depends-on ("norm" "package")) - (:file "norm" :depends-on ("package")) - (:file "package"))))))) - - -(asdf:defsystem "lizfcm/tests" - :author "Elizabeth Hunt" - :license "MIT" - :depends-on (:fiveam - :lizfcm) - :components ((:module "tests" - :components - ((:file "table" :depends-on ("suite")) - (:file "maceps" :depends-on ("suite")) - (:file "approx" :depends-on ("suite")) - (:file "vector" :depends-on ("suite")) - (:file "suite")))) - :perform (asdf:test-op (o c) (uiop:symbol-call - :fiveam :run! - (uiop:find-symbol* :lizfcm-test-suite :lizfcm/tests)))) - |