aboutsummaryrefslogtreecommitdiffstats
path: root/l/extreload.asd
blob: 2748eee791e9df63b2f2c8fc580fd522a5777c03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(asdf:defsystem extreload
  :version "0.0.1"
  :depends-on (:jsown
                :sysexits
                :trivial-timeout
                :unix-opts
                :wait-group
                :websocket-driver-client)
  :components ((:module "src"
                :serial t
                :components ((:file "package")
                             (:file "macro")
                             (:file "config")
                             (:file "option")
                             (:file "call-id")
                             (:file "devtools-protocol")
                             (:file "main"))))

  :build-operation "program-op"
  :build-pathname "extreload"
  :entry-point "extreload:main")