lisp-csl.asd 493 B

123456789101112131415161718
  1. ;;;; lisp-csl.asd
  2. ;;;;
  3. ;;;; Copyright (c) 2015 Sam Flint <swflint@flintfam.org>
  4. (asdf:defsystem #:lisp-csl
  5. :description "A CSL processor written in Lisp"
  6. :author "Sam Flint <swflint@flintfam.org>"
  7. :license "GNU GPLv3 or later"
  8. :depends-on (#:alexandria
  9. #:closer-mop
  10. #:esrap
  11. #:s-xml
  12. #:cl-ppcre
  13. #:uiop
  14. #:unix-opts)
  15. :serial t
  16. :components ((:file "package")
  17. (:file "lisp-csl")))