Why name it something unique when this is what I'm going to be making at the end of it all? Just makes it more confusing for the end user.
10 lines
291 B
Common Lisp
10 lines
291 B
Common Lisp
(asdf:defsystem :cantedraw
|
|
:depends-on (:deploy)
|
|
:components ((:file "packages")
|
|
(:file "lib.macros")
|
|
(:file "lib.functions")
|
|
(:file "cantedraw"))
|
|
:build-operation "deploy-op"
|
|
:build-pathname "cantedraw"
|
|
:entry-point "cantedraw:start")
|