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 | |
parent | f127e1e955b638a8397a27adda2dd51c101c37ae (diff) | |
download | cantedraw-334ece1ee77c7d76a8fec046681b2f4a817685a9.tar.gz cantedraw-334ece1ee77c7d76a8fec046681b2f4a817685a9.tar.bz2 cantedraw-334ece1ee77c7d76a8fec046681b2f4a817685a9.zip |
Split source code into different modules for cleanliness
-rw-r--r-- | cantedraw.asd | 12 | ||||
-rw-r--r-- | lib/functions.lisp (renamed from lib.functions.lisp) | 0 | ||||
-rw-r--r-- | lib/macros.lisp (renamed from lib.macros.lisp) | 0 | ||||
-rw-r--r-- | src/main.lisp (renamed from main.lisp) | 0 | ||||
-rw-r--r-- | src/model.lisp (renamed from model.lisp) | 0 |
5 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") diff --git a/lib.functions.lisp b/lib/functions.lisp index 99796c9..99796c9 100644 --- a/lib.functions.lisp +++ b/lib/functions.lisp diff --git a/lib.macros.lisp b/lib/macros.lisp index d182ce0..d182ce0 100644 --- a/lib.macros.lisp +++ b/lib/macros.lisp diff --git a/main.lisp b/src/main.lisp index 53d9bec..53d9bec 100644 --- a/main.lisp +++ b/src/main.lisp diff --git a/model.lisp b/src/model.lisp index 5652b9c..5652b9c 100644 --- a/model.lisp +++ b/src/model.lisp |