-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmtg-api.asd
45 lines (44 loc) · 1.34 KB
/
mtg-api.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
35
36
37
38
39
40
41
42
43
44
45
(defsystem "mtg-api"
:version "0.1.0"
:author "Neil Munro (NMunro)"
:license ""
:depends-on (:dexador
:do-urlencode
:jonathan
:alexandria
:closer-mop)
:components ((:module "src"
:components
((:file "base")
(:module "formats"
:components
((:file "formats")))
(:module "types"
:components
((:file "types")
(:file "subtypes")
(:file "supertypes")))
(:module "cards"
:components
((:file "legality")
(:file "ruling")
(:file "translation")
(:file "card")
(:file "cards")))
(:module "set"
:components
((:file "set")
(:file "sets")))
(:file "main"))))
:description ""
:in-order-to ((test-op (test-op "mtg-api/tests"))))
(defsystem "mtg-api/tests"
:author ""
:license ""
:depends-on ("mtg-api"
"rove")
:components ((:module "tests"
:components
((:file "main"))))
:description "Test system for mtg-api"
:perform (test-op (op c) (symbol-call :rove :run c)))