forked from bendudson/array-operations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
array-operations.asd
23 lines (22 loc) · 957 Bytes
/
array-operations.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
(asdf:defsystem :array-operations
:description "Simple array operations library for Common Lisp."
:author "Tamas K. Papp <[email protected]>"
:maintainer "Ben Dudson <http://github.com/bendudson>"
:homepage "https://github.com/bendudson/array-operations"
:license "MIT"
:class :package-inferred-system
:pathname "src/"
:depends-on (:array-operations/all)
:in-order-to ((test-op (test-op :array-operations/tests))))
(asdf:defsystem :array-operations/tests
:description "Unit tests for the ARRAY-OPERATIONS library."
:author "Tamas K. Papp <[email protected]>"
:maintainer "Ben Dudson <http://github.com/bendudson>"
:homepage "https://github.com/bendudson/array-operations"
:license "MIT"
:depends-on (:array-operations ; loads everything else
:alexandria
:clunit)
:pathname "tests/"
:components ((:file "tests"))
:perform (test-op (o c) (uiop:symbol-call :array-operations/tests :run)))