forked from goose121/clx-truetype
-
Notifications
You must be signed in to change notification settings - Fork 0
/
clx-truetype.asd
32 lines (29 loc) · 981 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
32
;;;; 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
#:cacle)
: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")))))