-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathunpython.asd
More file actions
24 lines (22 loc) · 732 Bytes
/
unpython.asd
File metadata and controls
24 lines (22 loc) · 732 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
;;;; unpython.asd
(asdf:defsystem #:unpython
:description "Read pickle files into common lisp"
:author "Mark Boger <93mar.bog@gmail.com>"
:version "0.0.1"
:serial t
:pathname "src"
:components ((:file "package")
(:file "opcodes")
(:file "conditions")
(:file "unpython"))
:in-order-to ((asdf:test-op (asdf:test-op :unpython-test))))
(asdf:defsystem #:unpython/test
:description "Tests for unpytho"
:author "Mark Boger <93mar.bog@gmail.com"
:version "0.0.1"
:depends-on (#:parachute)
:serial t
:pathname "t"
:components ((:file "package")
(:file "unpython"))
:perform (asdf:test-op (op c) (uiop:symbol-call :parachute :test :unpython-test)))