cacl.asd @ c2a0734fb39e

Update build process
author Steve Losh <steve@stevelosh.com>
date Fri, 28 Feb 2020 13:33:54 -0500
parents a08b75bd86ad
children c5a16c723abb
(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
               :uiop
               :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")))))