-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcl-rfc8628.asd
More file actions
32 lines (31 loc) · 1.15 KB
/
Copy pathcl-rfc8628.asd
File metadata and controls
32 lines (31 loc) · 1.15 KB
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
(asdf:defsystem #:cl-rfc8628
:description "The OAuth 2.0 device authorization grant as a CLOS protocol."
:author "Lambda Symbolics OÜ"
:license "COLL-Attribution"
:version "0.1.0"
:serial t
:depends-on (#:bordeaux-threads
#:cl-base64
#:dexador
#:quri
#:yason)
:components ((:module "src"
:serial t
:components ((:file "package")
(:file "support")
(:file "store")
(:file "client")
(:file "manager")
(:file "rfc8628"))))
:in-order-to ((asdf:test-op (asdf:test-op #:cl-rfc8628/tests))))
(asdf:defsystem #:cl-rfc8628/tests
:description "Tests for cl-rfc8628."
:depends-on (#:cl-rfc8628)
:serial t
:components ((:module "tests"
:serial t
:components ((:file "tests")
(:file "manager"))))
:perform (asdf:test-op (operation component)
(declare (ignore operation component))
(uiop:symbol-call '#:cl-rfc8628/tests '#:run-tests)))