-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcl-apache-arrow.asd
30 lines (29 loc) · 1.05 KB
/
cl-apache-arrow.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
(asdf:defsystem #:cl-apache-arrow
:description "A wrapper around Apache Arrow's C++ library."
:author "Katherine Cox-Buday <[email protected]>"
:license "Apache-2.0"
:version "1.0.0"
:depends-on (cl-gobject-introspection
closer-mop
trivial-garbage)
:serial t
:components ((:module "src"
:components
((:file "package")
(:file "arrow-low-level")
(:file "parquet-low-level")
(:file "arrow")
(:file "parquet")
(:file "utils"))))
:in-order-to ((test-op (test-op "cl-apache-arrow/tests"))))
(defsystem "cl-apache-arrow/tests"
:description "Test system for cl-apache-arrow"
:author "Katherine Cox-Buday <[email protected]>"
:license "Apache-2.0"
:depends-on ("cl-apache-arrow"
"rove")
:components ((:module "src"
:components
((:file "utils-test")
(:file "arrow-test"))))
:perform (test-op (op c) (symbol-call :rove :run c)))