mirror of
https://github.com/rabbibotton/clog.git
synced 2025-12-06 02:30:42 -08:00
18 lines
540 B
Common Lisp
Vendored
18 lines
540 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)
|
|
:entry-point "hello-builder:start-app"
|
|
:components ((:file "hello-builder")
|
|
(:file "hello")))
|
|
|
|
(asdf:defsystem #:hello-builder/tools
|
|
:defsystem-depends-on (:clog)
|
|
:depends-on (#:hello-builder #:clog/tools) ; add clog plugins here as #:plugin/tools for design time
|
|
:components ((:clog-file "hello")))
|