mirror of
https://github.com/rabbibotton/clog.git
synced 2025-12-06 10:40:45 -08:00
12 lines
287 B
Common Lisp
12 lines
287 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")))
|