1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
;;;
;;; ASDF 3.1 compliant system definition file for Csound.
;;;
;;; Michael Gogins
;;; 11 July 2016
;;;
(require :asdf)
(asdf::defsystem "sb-csound"
:description "SBCL FFI interface to the Csound C API."
:long-description "Steel Bank Common Lisp sb-alien interface to the Csound C API."
:version "1.0"
:author "Michael Gogins <michael.gogins@gmail.com>"
:licence "LLGPL"
:depends-on ("sb-posix"
"cm2")
:serial t ;; the dependencies are linear.
:components
((:file "sb-csound")))
|