forked from cxxxr/cl-lsp
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcl-lsp.asd
28 lines (27 loc) · 885 Bytes
/
cl-lsp.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
(load-asd (merge-pathnames "cl-lsp.lem-base.asd" *load-pathname*))
(load-asd (merge-pathnames "cl-lsp.lem-lisp-syntax.asd" *load-pathname*))
(defsystem "cl-lsp"
:depends-on ("bordeaux-threads"
"trivial-gray-streams"
"swank"
"cl-ppcre"
"optima"
"alexandria"
"trivial-types"
"closer-mop"
"quri"
"jsonrpc"
"yason"
"cl-lsp.lem-base"
"cl-lsp.lem-lisp-syntax")
:serial t
:components ((:file "logger")
(:file "gray-streams")
(:file "swank")
(:file "slime")
(:file "protocol")
(:file "protocol-util")
(:file "formatting")
(:file "server")
(:file "eval")
(:file "main")))