-
Notifications
You must be signed in to change notification settings - Fork 15
/
cl-cairo2.asd
60 lines (58 loc) · 1.25 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
52
53
54
55
56
57
58
59
60
(defpackage #:cl-cairo2-asd
(:use :cl :asdf))
(in-package #:cl-cairo2-asd)
(defsystem cl-cairo2
:description "Cairo bindings"
:version "0.6"
:author "Tamas K Papp, Kei Suzuki"
:license "BOOST 1.0"
: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 "common")
(: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")
(:file "font")
(:file "user-font")))
#+freetype2
(:module "freetype"
:pathname #P"src/"
:serial t
:components
((:file "freetype")))
(: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 :metabang-bind))