clog/tutorial/28-tutorial/hello-builder/hello-builder.asd
2022-07-18 22:26:37 -04:00

12 lines
287 B
Common Lisp
Vendored

;;;; hello-builder
(asdf:defsystem #:hello-builder
:description "Hello Builder - Easy apps with CLOG Builder"
:author "david@botton.com"
:license "BSD"
:version "0.0.0"
:serial t
:depends-on (#:clog)
:components ((:file "hello-builder")
(:file "hello")))