forked from dmitryvk/cl-gtk2
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcl-gtk2-gdk.asd
31 lines (31 loc) · 1.08 KB
/
cl-gtk2-gdk.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
(defsystem :cl-gtk2-gdk
:name :cl-gtk2-gdk
:version "0.1.1"
:author "Kalyanov Dmitry <[email protected]>"
:license "LLGPL"
:serial t
:components ((:file "gdk.package")
(:file "gdk.threads")
(:file "gdk.objects")
(:file "gdk.functions")
(:file "gdk.general")
(:file "gdk.display")
(:file "gdk.screen")
(:file "gdk.region")
(:file "gdk.gc")
(:file "gdk.drawing-primitives")
(:file "gdk.bitmaps")
(:file "gdk.rgb")
(:file "gdk.images")
(:file "gdk.pixbufs")
(:file "gdk.colors")
(:file "gdk.visual")
(:file "gdk.cursor")
(:file "gdk.windows")
(:file "gdk.events")
(:file "gdk.key-values")
(:file "gdk.selections")
(:file "gdk.drag-and-drop")
(:file "gdk.input-devices")
(:file "gdk.pango"))
:depends-on (:cl-gtk2-glib :cffi :cl-gtk2-pango))