12 lines
337 B
Common Lisp
12 lines
337 B
Common Lisp
;;;; quickproject.asd
|
|
|
|
(asdf:defsystem #:quickproject
|
|
:description "Creates the skeleton of a new Common Lisp project"
|
|
:version "1.4.1"
|
|
:author "Zach Beane <xach@xach.com>"
|
|
:license "MIT"
|
|
:depends-on (#:cl-fad
|
|
#:html-template)
|
|
:serial t
|
|
:components ((:file "package")
|
|
(:file "quickproject")))
|