cl-blt.asd @ 0b1557603235

Add block box drawing border

I'm still not happy with the box-drawing UI.  I'm not sure what to do in the
case where there's no border.  Should the background expand to the full width?
author Steve Losh <steve@stevelosh.com>
date Wed, 05 Jul 2017 22:55:00 +0000
parents a2fb5d06bfb6
children (none)
(asdf:defsystem :cl-blt
  :description "Common Lisp wrapper for bearlibterminal"

  :author "Steve Losh <steve@stevelosh.com>"

  :license "MIT/X11"
  :version "1.0.0"

  :depends-on (:cffi :trivial-main-thread)

  :serial t
  :components ((:module "vendor" :serial t
                :components ((:file "quickutils-package")
                             (:file "quickutils")))
               (:file "package")
               (:module "src" :serial t
                :components
                ((:module "low-level" :serial t
                  :components ((:file "bearlibterminal")))
                 (:module "high-level" :serial t
                  :components ((:file "bearlibterminal")
                               (:file "boxes")))))))