forked from tpapp/lla
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlla.asd
48 lines (46 loc) · 1.32 KB
/
lla.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
;;; Copyright Tamas Papp 2010-2011.
;;;
;;; Distributed under the Boost Software License, Version 1.0. (See
;;; accompanying file LICENSE_1_0.txt or copy at
;;; http://www.boost.org/LICENSE_1_0.txt)
;;;
;;; This copyright notice pertains to all files in this library.
(defsystem lla
:description "Lisp Linear Algebra"
:version "0.2"
:author "Tamas K Papp <[email protected]>, Gábor Melis <[email protected]>"
:license "Boost Software License - Version 1.0"
:depends-on (#:anaphora
#:alexandria
#:cffi
#:cl-num-utils
#:cl-slice
#:let-plus)
:pathname #P"src/"
:serial t
:components
((:file "package")
(:file "configuration-interface")
(:file "configuration")
(:file "libraries")
(:file "conditions")
(:file "types")
(:file "foreign-memory")
(:file "pinned-array")
(:file "factorizations")
(:file "fortran-call")
(:file "linear-algebra")
(:file "blas")))
(defsystem lla-tests
:description "Unit tests for LLA."
:author "Tamas K Papp <[email protected]>, Gábor Melis <[email protected]>"
:license "Same as LLA--this is part of the LLA library."
:depends-on (#:lla
#:clunit)
:pathname #P"tests/"
:serial t
:components
((:file "setup")
(:file "pinned-array")
(:file "linear-algebra")
(:file "blas")))