summaryrefslogtreecommitdiff
path: root/src/lizfcm.asd
blob: 0096257055e862a02bec402f065aab6a98f5e7d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
(asdf:defsystem "lizfcm"
                :version "0.1.0"
                :author "Elizabeth Hunt"
                :license "MIT"
                :components
                ((:file "utils,within-range" :depends-on ("utils,package"))
                 (:file "utils,table" :depends-on ("utils,package"))
                 (:file "utils,package")
                 (:file "approx,maceps" :depends-on ("approx,package"))
                 (:file "approx,derivative" :depends-on ("approx,package"))
                 (:file "approx,package")
                 (:file "vector,least-squares")
                 (:file "vector,distance" :depends-on ("vector,norm" "vector,package"))
                 (:file "vector,norm" :depends-on ("vector,package"))
                 (:file "vector,package")))


(asdf:defsystem "lizfcm/tests"
                :author "Elizabeth Hunt"
                :license "MIT"
                :depends-on
                (:fiveam
                  :lizfcm)
                :components
                ((:file "tests,table" :depends-on ("tests,suite"))
                 (:file "tests,maceps" :depends-on ("tests,suite"))
                 (:file "tests,approx" :depends-on ("tests,suite"))
                 (:file "tests,vector" :depends-on ("tests,suite"))
                 (:file "tests,suite"))
                :perform
                (asdf:test-op (o c) (uiop:symbol-call
                                      :fiveam :run!
                                      (uiop:find-symbol* :lizfcm-test-suite :lizfcm/tests))))