From 82f71b0d13788b1cff9a24c5b652effd11631523 Mon Sep 17 00:00:00 2001 From: Colin Okay Date: Wed, 29 Jun 2022 11:54:24 -0500 Subject: [refactor] [structure] modularized project file structure --- wheelwork.asd | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'wheelwork.asd') 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"))) -- cgit v1.2.3