From 334ece1ee77c7d76a8fec046681b2f4a817685a9 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Fri, 14 Feb 2025 21:46:15 +0000 Subject: Split source code into different modules for cleanliness --- cantedraw.asd | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'cantedraw.asd') 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") -- cgit v1.2.3-13-gbd6f