-
Notifications
You must be signed in to change notification settings - Fork 3
/
adopt.asd
34 lines (24 loc) · 895 Bytes
/
adopt.asd
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
34
(asdf:defsystem :adopt
:description "Simple, flexible, UNIX-style option parsing."
:author "Steve Losh <[email protected]>"
:homepage "https://docs.stevelosh.com/adopt/"
:license "MIT"
:version "1.2.0"
:depends-on (:bobbin :split-sequence)
:in-order-to ((asdf:test-op (asdf:test-op :adopt/test)))
:serial t
:components ((:module "src" :serial t
:components ((:file "package")
(:file "main")))))
(asdf:defsystem :adopt/test
:description "Test suite for adopt."
:author "Steve Losh <[email protected]>"
:license "MIT"
:depends-on (:adopt :1am)
:serial t
:components ((:module "test"
:serial t
:components ((:file "package")
(:file "tests"))))
:perform (asdf:test-op (op system)
(funcall (read-from-string "adopt.test:run-tests"))))