diff options
Diffstat (limited to 'cantedraw.asd')
-rw-r--r-- | cantedraw.asd | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/cantedraw.asd b/cantedraw.asd index c3dcc4e..e3b64b4 100644 --- a/cantedraw.asd +++ b/cantedraw.asd @@ -1,10 +1,14 @@ (asdf:defsystem :cantedraw :depends-on (:alexandria) :components ((:file "packages") - (:file "lib.macros") - (:file "lib.functions") - (:file "model") - (:file "main")) + (:module "lib" + :components + ((:file "macros") + (:file "functions"))) + (:module "src" + :components + ((:file "model") + (:file "main")))) :build-operation "program-op" :build-pathname "bin/cantedraw" :entry-point "cantedraw.main:start") |