forked from HDFGroup/hdf5-cffi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhdf5-cffi.asd
67 lines (64 loc) · 2.67 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
55
56
57
58
59
60
61
62
63
64
65
66
67
;;;; -*- 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
;;;; [email protected].
(eval-when (:compile-toplevel :load-toplevel :execute)
(asdf:oos 'asdf:load-op :cffi-grovel))
(asdf:defsystem hdf5-cffi
:serial t
:description "hdf5-cffi is a CFFI wrapper for the HDF5 library."
:version "1.8.16"
:author "Gerd Heber <[email protected]>"
:license "BSD"
:depends-on (:cffi :cffi-grovel)
:components
((:file "package")
(:file "hdf5-cffi")
(:module "hdf5"
:components ((cffi-grovel:grovel-file "grovel")
(cffi-grovel:grovel-file "h5-grovel")
(:file "h5")
(cffi-grovel:grovel-file "h5i-grovel")
(:file "h5i")
(cffi-grovel:grovel-file "h5f-grovel")
(:file "h5f")
(cffi-grovel:grovel-file "h5t-grovel")
(:file "h5t")
(cffi-grovel:grovel-file "h5l-grovel")
(:file "h5l")
(cffi-grovel:grovel-file "h5o-grovel")
(:file "h5o")
(cffi-grovel:grovel-file "h5s-grovel")
(:file "h5s")
(cffi-grovel:grovel-file "h5d-grovel")
(:file "h5d")
(cffi-grovel:grovel-file "h5g-grovel")
(:file "h5g")
(cffi-grovel:grovel-file "h5a-grovel")
(:file "h5a")
;; (cffi-grovel:grovel-file "h5pl-grovel")
;; (:file "h5pl")
(cffi-grovel:grovel-file "h5r-grovel")
(:file "h5r")
(cffi-grovel:grovel-file "h5z-grovel")
(:file "h5z")
(cffi-grovel:grovel-file "h5p-grovel")
(:file "h5p")
(:file "h5im")))))
(asdf:defsystem hdf5-examples
:serial t
:description "hdf5-examples contains a collection of simple helper functions."
:version "0.0.1"
:author "Gerd Heber <[email protected]>"
:license "BSD"
:depends-on (:hdf5-cffi)
:components
((:module "examples"
:components ((:file "common")))))