-
Notifications
You must be signed in to change notification settings - Fork 0
/
lil-vector.asd
31 lines (28 loc) · 905 Bytes
/
lil-vector.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
;;;; lil-vector.asd
(defpackage :lil-vector-system
(:use :cl :asdf))
(in-package :lil-vector-system)
(defsystem :lil-vector
:name "lil-vector"
:serial t
:components
((:static-file "lil-vector.asd")
(:module :src
:components ((:file "package")
(:file "pbvt"))
:serial t))
:depends-on (:lisp-interface-library :alexandria)
:in-order-to ((test-op (load-op :lil-vector-test)))
:perform (test-op :after (op c)
(funcall
(intern #.(string '#:run-all-tests)
:lil-vector-test))))
(defsystem :lil-vector-test
:name "lil-vector-test"
:serial t
:description "Tests for lil-vector."
:components
((:module :test
:components ((:file "package")
(:file "lil-vector-test"))))
:depends-on (:lil-vector :stefil :alexandria :check-it))