-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathretrospectiff.asd
48 lines (46 loc) · 1.54 KB
/
retrospectiff.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
(asdf:defsystem :retrospectiff
:name "retrospectiff"
:description "A library for reading and writing TIFF images"
:author "Cyrus Harmon <[email protected]>"
:version "0.2"
:licence "BSD"
:serial t
:depends-on (com.gigamonkeys.binary-data
flexi-streams
ieee-floats
cl-jpeg
deflate
opticl-core)
:components
((:cl-source-file "package")
(:cl-source-file "constants")
(:cl-source-file "globals")
(:cl-source-file "util")
(:cl-source-file "bit-array")
(:cl-source-file "lzw")
(:cl-source-file "jpeg")
(:cl-source-file "deflate")
(:cl-source-file "packbits")
(:cl-source-file "compression")
(:cl-source-file "binary-types")
(:cl-source-file "ifd")
(:cl-source-file "tiff-image")
(:cl-source-file "retrospectiff")
(:cl-source-file "retrospectiff2"))
:in-order-to ((test-op (test-op :retrospectiff/test))))
(asdf:defsystem :retrospectiff/test
:name "retrospectiff/tests"
:description "test library for retrospectiff"
:author "Cyrus Harmon <[email protected]>"
:licence "BSD"
:default-component-class cl-source-file
:depends-on (retrospectiff fiveam)
:components
((:module :test
:serial t
:components ((:file "package")
(:file "retrospectiff-test")
(:file "retrospectiff2-test"))))
:perform (test-op (o c)
(uiop:symbol-call :fiveam '#:run! :retrospectiff)
(uiop:symbol-call :fiveam '#:run! :retrospectiff2)))