forked from tpapp/xarray
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxarray.asd
46 lines (43 loc) · 1003 Bytes
/
xarray.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
(defpackage #:xarray-asd
(:use :cl :asdf))
(in-package #:xarray-asd)
(defparameter *fasl-directory*
(make-pathname :directory '(:relative
#+sbcl "fasl-sbcl"
#+openmcl "fasl-ccl"
#+cmu "fasl-cmucl"
#+clisp "fasl-clisp"
#-(or sbcl openmcl clisp cmucl) "fasl"
)))
(defsystem #:xarray
:description ""
:author "Tamas K Papp"
:license "MIT"
:serial t
:components
((:module
"package-init"
:pathname #P"src/"
:components
((:file "package")))
(:module
"basics"
:pathname #P"src/"
:depends-on ("package-init")
:serial t
:components
((:file "types")
(:file "utilities")
(:file "interface")))
(:module
"functionality"
:pathname #P"src/"
:depends-on ("basics")
:serial t
:components
((:file "array")
(:file "view")
(:file "operations")
(:file "sequences")
(:file "atoms"))))
:depends-on (:cl-utilities :iterate :metabang-bind :anaphora))