-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnas-t.asd
53 lines (49 loc) · 1.81 KB
/
nas-t.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
46
47
48
49
50
51
52
53
;;; nas-t.asd --- NAS-T SYSTEMS
;; Welcome to NAS-T.
;;; Code:
(defsystem "nas-t"
:version "0.1.0"
:license (:file "LICENSE")
:maintainer "ellis <ellis@rwest.io>"
:homepage "https://nas-t.net"
:bug-tracker "https://lab.rwest.io/comp/startup/nas-t/issues"
:depends-on (:cl-ppcre :macs :sxp)
:build-operation "program-op"
:build-pathname "bin/nasd"
:entry-point "nas-t:main"
:in-order-to ((test-op (test-op "nas-t/tests")))
:components ((:module "src"
:components
((:file "pkg")
(:module "proto"
:components ((:file "crypto")
(:file "endpoint")
(:file "message")
(:file "query")
(:file "token")
(:file "transport")))
(:module "client")
(:module "util"
:components ((:file "pkg")
(:file "macs" :depends-on ("pkg"))
(:file "test" :depends-on ("pkg"))))))))
(defsystem "nas-t/infra"
:version "0.1.0"
:license (:file "LICENSE")
:maintainer "ellis <ellis@rwest.io>"
:homepage "https://nas-t.net"
:bug-tracker "https://lab.rwest.io/comp/startup/nas-t/issues"
:depends-on (:nas-t :macs)
:components ((:module "infra"
:components ((:file "pkg")
(:file "web/tests")))))
(defsystem "nas-t/tests"
:version "0.1.0"
:license (:file "LICENSE")
:maintainer "ellis <ellis@rwest.io>"
:homepage "https://nas-t.net"
:bug-tracker "https://lab.rwest.io/comp/startup/nas-t/issues"
:depends-on (:nas-t :macs :macs/rt)
:components ((:module "tests"
:components ((:file "pkg"))))
:perform (test-op (op c) (uiop:symbol-call '#:nas-t.tests '#:run-all-tests)))