diff options
author | Colin Okay <colin@cicadas.surf> | 2022-06-29 11:54:24 -0500 |
---|---|---|
committer | Colin Okay <colin@cicadas.surf> | 2022-06-29 11:54:24 -0500 |
commit | 82f71b0d13788b1cff9a24c5b652effd11631523 (patch) | |
tree | f0ec127b2f10f46029983ee95b6c72ef29bc504c /wheelwork.asd | |
parent | 4d1ee56c96ce254134b692f0e3b3271c87a42b54 (diff) |
[refactor] [structure] modularized project file structure
Diffstat (limited to 'wheelwork.asd')
-rw-r--r-- | wheelwork.asd | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/wheelwork.asd b/wheelwork.asd index b1fd2d5..ef3a1a3 100644 --- a/wheelwork.asd +++ b/wheelwork.asd @@ -17,5 +17,26 @@ #:closer-mop #:lambda-riffs #:cl-fond) + :pathname "src/" :components ((:file "package") + (:file "protocol") + (:file "utils") + (:module "gl" + :components ((:file "util") + (:file "texture") + (:file "shader"))) + (:module "assets" + :components ((:file "asset") + (:file "png") + (:file "font"))) + (:module "core-units" + :components ((:file "unit") + (:file "container"))) + (:module "events" + :components ((:file "event-handler") + (:file "listener-and-interactive"))) + (:module "interactive-units" + :components ((:file "bitmap") + (:file "text"))) + (:file "application") (:file "wheelwork"))) |