aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cantedraw.asd12
-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