clog/tutorial/28-tutorial/hello-builder/hello-builder.asd
2022-01-27 22:31:30 -05:00

13 lines
281 B
Common Lisp

;;;; 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")))