-
Notifications
You must be signed in to change notification settings - Fork 3
/
pngload.asd
36 lines (36 loc) · 1006 Bytes
/
pngload.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
(asdf:defsystem #:pngload
:description "A reader for the PNG image format."
:author ("Michael Fiano <[email protected]>"
"Bart Botta <[email protected]>")
:license "MIT"
:homepage "https://github.com/3b/pngload"
:version "0.1.0"
:encoding :utf-8
:depends-on
(#:3bz
#:alexandria
(:feature (:and (:not :mezzano) (:not :abcl)) #:cffi)
(:feature (:and (:not :mezzano) (:not :abcl)) #:mmap)
#:parse-float
(:feature (:and (:not :clisp) (:not :abcl)) #:static-vectors)
#:swap-bytes
#:uiop
#:zpb-exif)
:pathname "src"
:serial t
:components
((:file "package")
(:file "common")
(:file "source")
(:file "source-noffi" :if-feature (:or :mezzano :abcl))
(:file "source-ffi" :if-feature (:and (:not :mezzano) (:not :abcl)))
(:file "properties")
(:file "chunk")
(:file "chunk-types")
(:file "conditions")
(:file "datastream")
(:file "deinterlace")
(:file "decode")
(:file "metadata")
(:file "png")
(:file "octet-vector")))