-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathhdf5-cffi.asd
56 lines (53 loc) · 1.59 KB
/
hdf5-cffi.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
49
50
51
52
53
54
;;;; -*- Mode: lisp; indent-tabs-mode: nil -*-
;;;;
;;;; Copyright by The HDF Group.
;;;; All rights reserved.
;;;;
;;;; This file is part of hdf5-cffi.
;;;; The full hdf5-cffi copyright notice, including terms governing
;;;; use, modification, and redistribution, is contained in the file COPYING,
;;;; which can be found at the root of the source code distribution tree.
;;;; If you do not have access to this file, you may request a copy from
;;;; help@hdfgroup.org.
(defsystem hdf5-cffi
:serial t
:description "hdf5-cffi is a CFFI wrapper for the HDF5 library."
:version "1.8.18"
:author "Gerd Heber <gheber@hdfgroup.org>"
:license "BSD"
:defsystem-depends-on (:cffi-grovel)
:depends-on (:cffi)
:pathname "src/"
:components
((:file "package")
(:file "library")
(:cffi-grovel-file "grovel")
(:cffi-grovel-file "h5-grovel")
(:file "h5")
(:cffi-grovel-file "h5i-grovel")
(:file "h5i")
(:cffi-grovel-file "h5f-grovel")
(:file "h5f")
(:cffi-grovel-file "h5t-grovel")
(:file "h5t")
(:cffi-grovel-file "h5l-grovel")
(:file "h5l")
(:cffi-grovel-file "h5o-grovel")
(:file "h5o")
(:cffi-grovel-file "h5s-grovel")
(:file "h5s")
(:cffi-grovel-file "h5d-grovel")
(:file "h5d")
(:cffi-grovel-file "h5g-grovel")
(:file "h5g")
(:cffi-grovel-file "h5a-grovel")
(:file "h5a")
;; (:cffi-grovel-file "h5pl-grovel")
;; (:file "h5pl")
(:cffi-grovel-file "h5r-grovel")
(:file "h5r")
(:cffi-grovel-file "h5z-grovel")
(:file "h5z")
(:cffi-grovel-file "h5p-grovel")
(:file "h5p"))
:in-order-to ((test-op (test-op :hdf5-cffi.test))))