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

bearlibterminal.asd 938B

1234567891011121314151617181920212223242526
  1. ;;;; bearlibterminal.asd
  2. (asdf:defsystem #: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" "cl-plus-c")
  8. :components ((:module :autowrap-spec
  9. :pathname "spec"
  10. :components
  11. ((:static-file "BearLibTerminal.h")))
  12. (:file "package")
  13. (:file "library")
  14. (:file "autowrap")
  15. (:file "bearlibterminal")))
  16. (asdf:defsystem #:bearlibeterminal/examples
  17. :description "simple examples to demonstrate common usage of bearlibterminal."
  18. :author "Lily Carpenter <lily-license@azrazalea.net>"
  19. :license "BSD 3-clause"
  20. :depends-on (:bearlibterminal)
  21. :pathname "examples"
  22. :serial t
  23. :components ((:file "hello-world")))