lcsp.asd 474 B

123456789101112131415161718
  1. ;;;; LCSP.asd
  2. ;;
  3. ;;;; Copyright (c) 2018 Samuel W. Flint <swflint@flintfam.org>
  4. (asdf:defsystem #:LCSP
  5. :description "Describe LCSP here"
  6. :author "Samuel W. Flint <swflint@flintfam.org>"
  7. :license "GNU GPL v3 or later"
  8. :version "0.0.1"
  9. :serial t
  10. :depends-on (#:alexandria
  11. #:esrap)
  12. :components ((:file "package")
  13. (:file "types")
  14. (:file "checking")
  15. (:file "xcsp-lang")
  16. (:file "LCSP")))