-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcl-excel.asd
More file actions
55 lines (52 loc) · 1.58 KB
/
cl-excel.asd
File metadata and controls
55 lines (52 loc) · 1.58 KB
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
49
50
51
52
53
54
55
;;;; cl-excel.asd — ASDF system definition (M0 skeleton)
;;;; Keep this file minimal for Milestone M0. Subsequent milestones will
;;;; extend the component list and dependencies.
(asdf:defsystem #:cl-excel
:description "Common Lisp XLSX reader/writer."
:version "0.1.0"
:author "Gwang-Jin Kim <gwang.jin.kim.phd@gmail.com>"
:license "MIT"
:depends-on (#:zip #:cxml #:cxml-stp #:local-time #:flexi-streams #:parse-number #:alexandria)
:serial t
:in-order-to ((test-op (test-op "cl-excel/tests")))
:components
((:module "src"
:serial t
:components
((:file "package")
(:file "types")
(:file "refs")
(:file "zip")
(:file "xml")
(:file "rels")
(:file "styles")
(:file "sheet-read")
(:file "ods-read")
(:file "ods-write")
(:file "table-read")
(:file "table-write")
(:file "workbook-read")
(:file "sheet-write")
(:file "workbook-write")
(:file "writer")
(:file "iterators")
(:file "core")
(:file "sugar")))))
(asdf:defsystem #:cl-excel/tests
:description "Test suite for cl-excel (M0)."
:depends-on (#:cl-excel #:fiveam)
:serial t
:components
((:module "tests"
:serial t
:components ((:file "run")
(:file "refs")
(:file "workbook")
(:file "tables")
(:file "write-enhancements")
(:file "tibble-support")
(:file "conversion")
(:file "compat")
(:file "ods"))))
:perform (test-op (op c)
(uiop:symbol-call '#:cl-excel.tests '#:run-tests)))