-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdifflisp.asd
More file actions
28 lines (26 loc) · 902 Bytes
/
difflisp.asd
File metadata and controls
28 lines (26 loc) · 902 Bytes
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
;;;; difflisp.asd
(asdf:defsystem #:difflisp
:description "An automatically differentiable subset of Lisp in Common Lisp"
:author "Abhinav Chavali <abhinavchavali12@gmail.com>"
:license "MIT"
:version "0.0.1"
:serial t
:depends-on ()
:components ((:module "src"
:components
((:file "package")
(:file "tape")
(:file "operators")
(:file "diff")
(:file "core"))))
:in-order-to ((test-op (test-op #:difflisp/tests))))
(asdf:defsystem #:difflisp/tests
:description "Test suite for DiffLisp"
:author "Abhinav Chavali <abhinavchavali12@gmail.com>"
:license "MIT"
:depends-on (#:difflisp
#:fiveam)
:components ((:module "tests"
:components
((:file "main"))))
:perform (test-op (o c) (symbol-call :fiveam '#:run! :difflisp-tests)))