diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2025-02-14 21:46:15 +0000 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2025-02-14 21:46:43 +0000 |
commit | 334ece1ee77c7d76a8fec046681b2f4a817685a9 (patch) | |
tree | bf7f21984c9d726433f878fcd11a69d3bc0f86e6 /cantedraw.asd | |
parent | f127e1e955b638a8397a27adda2dd51c101c37ae (diff) | |
download | cantedraw-334ece1ee77c7d76a8fec046681b2f4a817685a9.tar.gz cantedraw-334ece1ee77c7d76a8fec046681b2f4a817685a9.tar.bz2 cantedraw-334ece1ee77c7d76a8fec046681b2f4a817685a9.zip |
Split source code into different modules for cleanliness
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") |