forked from rpav/cl-cairo2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
cl-cairo2.asd
51 lines (49 loc) · 1.06 KB
/
cl-cairo2.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
(defpackage #:cl-cairo2-asd
(:use :cl :asdf))
(in-package #:cl-cairo2-asd)
(defsystem cl-cairo2
:description "Cairo 1.8 bindings"
:version "0.5"
:author "Tamas K Papp, Kei Suzuki"
:license "GPL"
:serial t
:components
((:module
"package-init"
:pathname #P"src/"
:components
((:file "package")))
(:module
"foreign-interface"
:pathname #P"src/"
:serial t
:components
((:file "load-libraries")
(:file "my-double")
(:file "cl-cairo2-swig")))
(:module
"core"
:pathname #P"src/"
:serial t
:components
((:file "tables")
(:file "surface")
(:file "context")
(:file "transformations")
(:file "pattern")
(:file "path")
(:file "text")))
(:module
"xlib"
:pathname #P"src/xlib/"
:serial t
:components
((:file "xlib-image-interface")))
(:module
"gtk2"
:pathname #P"src/gtk2/"
:serial t
:components
((:file "gtk2-interface"))))
:depends-on (:cffi :cl-colors :cl-utilities :trivial-garbage
:trivial-features))