-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcl-neovim.asd
23 lines (23 loc) · 905 Bytes
/
cl-neovim.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
(asdf:defsystem #:cl-neovim
:description "Common Lisp client for Neovim"
:author "Andrej Dolenc <[email protected]>"
:license "MIT"
:depends-on (#:babel
#:split-sequence
#:form-fiddle
#:cl-messagepack-rpc
#:vom)
:serial T
:components ((:module "src"
:serial T
:components ((:file "package")
(:file "utils")
(:file "vim-utils")
(:file "cl-neovim")
(:file "logging")
(:file "repl")
(:file "callbacks")
(:file "api-generator")
(:file "manual-api")
(:file "generated-api"))))
:in-order-to ((test-op (test-op cl-neovim-tests))))