summaryrefslogtreecommitdiff
path: root/ffnn.asd
blob: 1e5ac642c3f98f60ffec8b2620b328afdb39798e (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
(defsystem "ffnn"
  :version "0.0.1"
  :author ""
  :license ""
  :depends-on ()
  :components ((:module "src"
                :components
                ((:file "package")
		 (:file "algo1")
		 (:file "algo2"))))
  :description ""
  :in-order-to ((test-op (test-op "ffnn/tests"))))

(defsystem "ffnn/tests"
  :author ""
  :license ""
  :depends-on ("ffnn"
               "rove")
  :components ((:module "tests"
                :components
                ((:file "algo1")
		 (:file "algo2"))))
  :description "Test system for ffnn"
  :perform (test-op (op c) (symbol-call :rove :run c)))