cacl.asd @ a08b75bd86ad

Add a UI
author Steve Losh <steve@stevelosh.com>
date Tue, 18 Dec 2018 21:30:00 -0500
parents ef33bdcca28e
children c2a0734fb39e
(asdf:defsystem :cacl
  :description "RPN calculator in Common Lisp"
  :author "Steve Losh <steve@stevelosh.com>"

  :license "MIT/X11"
  :version "0.0.1"

  :depends-on (:adopt
               :losh
               :drakma
               :flexi-streams
               :iterate
               :str
               :yason)

  :serial t
  :components ((:module "vendor" :serial t
                :components ((:file "quickutils-package")
                             (:file "quickutils")))
               (:file "package")
               (:module "src" :serial t
                :components ((:file "base")
                             (:file "json")
                             (:file "math")))))