blob: 73402fb8d1cda459eedc5f0c69375499f109f673 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
(asdf:defsystem extreload
:version "0.0.1"
:depends-on (:jsown
:unix-opts
:wait-group
:websocket-driver-client)
:components ((:module "src"
:serial t
:components ((:file "package")
(:file "macro")
(:file "option")
(:file "main"))))
:build-operation "program-op"
:build-pathname "extreload"
:entry-point "extreload:main")
|