forked from dmb2/clx-freetype2
-
Notifications
You must be signed in to change notification settings - Fork 6
/
clx-truetype.asd
31 lines (28 loc) · 958 Bytes
/
clx-truetype.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
;;;; clx-truetype.asd
(asdf:defsystem #:clx-truetype
:serial t
:description "clx-truetype is pure common lisp solution for antialiased TrueType font rendering using CLX and XRender extension."
:author "Michael Filonenko <[email protected]>"
:license "MIT"
:version "0.1"
:depends-on (#:clx
#:zpb-ttf
#:cl-vectors
#:cl-paths-ttf
#:cl-aa
#:cl-fad
#:cl-store
#:trivial-features)
:components ((:file "package")
(:file "clx-utils")
(:file "font-cache")
(:file "clx-truetype")))
(asdf:defsystem #:clx-truetype-test
:serial t
:description "Testing library for clx-truetype."
:author "Michael Filonenko <[email protected]>"
:license "MIT"
:version "0.1"
:depends-on (#:clx-truetype)
:components ((:module test
:components ((:file "hello-world")))))