- Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathlispkit.asd
31 lines (31 loc) · 886 Bytes
/
lispkit.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
;; -*- mode: common-lisp -*-
(defsystem lispkit
:version"0.0.1"
:description"Lispy browser"
:licence"BSD"
:serialt
:components ((:file"packages")
(:file"user")
(:file"settings")
(:file"commands")
(:file"commands/inspector")
(:file"macros")
(:file"modeline")
(:file"jumps")
(:file"events")
(:file"browser")
(:file"keys")
(:file"ui")
(:file"lispkit"))
:depends-on (:asdf
:alexandria
:cl-cffi-gtk
:cl-ppcre
:cl-webkit2
:cl-xkeysym
:djula
:parenscript
:purl
:split-sequence
:lparallel)
:in-order-to ((test-op (test-op :lispkit-test))))