Skip to content
Snippets Groups Projects
Commit cd7c4e94 authored by Liam Healy's avatar Liam Healy
Browse files

Add dependencies on libgsl

Some files in init depend on libgsl, so dependency is now given in
gsll.asd.
parent 4a0b932f
No related branches found
No related tags found
No related merge requests found
;; Definition of GSLL system
;; Liam Healy
;; Time-stamp: <2009-06-16 19:11:10EDT gsll.asd>
;; Time-stamp: <2009-06-17 22:23:18EDT gsll.asd>
(when (asdf:find-system :fsbv nil)
(pushnew :fsbv *features*))
......@@ -22,15 +22,15 @@
(cffi-grovel:grovel-file "libgsl" :pathname #+unix "libgsl-unix")
(:file "utility")
(:file "forms")
(:file "conditions" :depends-on (init))
(:file "number-conversion" :depends-on (init))
(:file "conditions" :depends-on (init libgsl))
(:file "number-conversion" :depends-on (init libgsl))
(:file "callback-compile-defs" :depends-on (init))
(:file "mobject" :depends-on (init callback-compile-defs))
(:file "callback-included" :depends-on (mobject))
(:file "callback"
:depends-on (init utility forms number-conversion callback-included))
(:file "types" :depends-on (init))
(cffi-grovel:grovel-file "callback-struct" :depends-on (types))
(:file "types" :depends-on (init libgsl))
(cffi-grovel:grovel-file "callback-struct" :depends-on (types libgsl))
(:file "funcallable" :depends-on (utility))
(:file "complex-types" :depends-on (types))
(:file "element-types" :depends-on (init complex-types))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment