-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathulubis.asd
65 lines (63 loc) · 1.81 KB
/
ulubis.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
;;;; ulubis.asd
(asdf:defsystem #:ulubis
:description "A Common Lisp Wayland compositor"
:author "Malcolm Still"
:license "BSD 3-Clause"
:depends-on (#:cffi
#:osicat
#:swank
#:cepl
#:rtg-math
#:rtg-math.vari
#:easing
#:cl-xkb
#:cl-wayland
#:trivial-dump-core
#:trivial-backtrace
#:cl-cairo2
#:uiop
#:zpng)
:serial t
:components ((:file "backend")
(:file "syscall")
(:file "animation")
(:file "package")
(:file "cairo-surface")
(:file "ianimatable")
;; (:file "isurface")
(:file "client")
(:file "compositor")
;; (:file "plumbing")
(:file "wl-surface-impl")
(:file "wl-region-impl")
(:file "wl-compositor-impl")
(:file "wl-data-device-impl")
(:file "wl-data-source-impl")
(:file "wl-data-device-manager-impl")
(:file "wl-output-impl")
(:file "wl-keyboard-impl")
(:file "wl-pointer-impl")
(:file "wl-seat-impl")
(:file "wl-shell-surface-impl")
(:file "wl-shell-impl")
(:file "wl-subsurface-impl")
(:file "wl-subcompositor-impl")
(:file "zxdg-toplevel-v6-impl")
(:file "zxdg-surface-v6-impl")
(:file "zxdg-shell-v6-impl")
(:file "zxdg-positioner-v6-impl")
(:file "zxdg-popup-v6-impl")
(:file "xdg-surface-impl")
(:file "xdg-shell-impl")
(:file "screenshot")
(:file "keyboard")
(:file "mouse")
(:file "surface")
(:file "render")
(:file "mode")
(:file "view")
(:file "virtual-desktop-mode")
(:file "desktop-mode")
(:file "alt-tab-mode")
(:file "ulubis")
(:file "install")))