-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcl-activitypub.asd
34 lines (32 loc) · 999 Bytes
/
cl-activitypub.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
;;;; cl-activitypub.asd
(asdf:defsystem "cl-activitypub"
:description "An ActivityPub implementation"
:author "Jason McBrayer <[email protected]>"
:license "AGPLv3"
:serial t
:depends-on ("yason")
:components ((:file "package")
(:file "cl-activitypub")
(:module "entities"
:serial t
:components
((:file "package")
(:file "core")
(:file "activities")
(:file "actors")
(:file "objects"))))
:in-order-to ((test-op (test-op cl-activitypub-test))))
(asdf:defsystem "cl-activitypub-test"
:depends-on ("cl-activitypub"
:prove)
:defsystem-depends-on (:prove-asdf)
:serial t
:components
((:module "tests"
:serial t
:components
((:file "package")
(:test-file "to-json")
(:test-file "from-json"))))
:perform (test-op :after (op c)
(funcall (intern #.(string :run) :prove) c)))