Split source code into different modules for cleanliness

This commit is contained in:
2025-02-14 21:46:15 +00:00
parent f127e1e955
commit 334ece1ee7
5 changed files with 8 additions and 4 deletions

View File

@@ -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")