-
Notifications
You must be signed in to change notification settings - Fork 1
/
cl-graphicsmagick.asd
21 lines (21 loc) · 964 Bytes
/
cl-graphicsmagick.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(asdf:defsystem "cl-graphicsmagick"
:name "cl-graphicsmagick"
:description "Common Lisp CFFI wrapper for GraphicsMagick, a library to deal with images."
:version "0.0.2"
:author "Muyinliu Xing <muyinliu@gmail.com>"
:license "MIT"
:depends-on (:cffi)
:in-order-to ((test-op (test-op "cl-graphicsmagick-test")))
:serial t
:components ((:module "src"
:serial t
:components ((:file "packages")
(:module "cffi"
:serial t
:components ((:file "load-foreign-library")
(:file "common")
(:file "types")
(:file "pixel-wand")
(:file "magick-wand")
(:file "drawing-wand")))
(:file "utils")))))