Common lisp interface to bearlibterminal https://bitbucket.org/cfyzium/bearlibterminal. Created with https://github.com/rpav/cl-autowrap.

cl-bearlibterminal.asd 399B

1234567891011
  1. ;;;; cl-bearlibterminal.asd
  2. (asdf:defsystem #:cl-bearlibterminal
  3. :description "A simple interface to the easy to use terminal library bearlibterminal, designed to help write text based games."
  4. :author "Lily Carpenter <lily-license@azrazalea.net>"
  5. :license "BSD 3-clause"
  6. :serial t
  7. :depends-on ("cl-autowrap")
  8. :components ((:file "package")
  9. (:file "cl-bearlibterminal")))