aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorColin Okay <colin@cicadas.surf>2022-07-21 11:34:37 -0500
committerColin Okay <colin@cicadas.surf>2022-07-21 11:34:37 -0500
commit6d9b8b48423dba99ecdba004f260c30e6717b6a6 (patch)
tree167f0416e301a32ccfe24ee5dc3b1371a33d108a
parent3782dddb07974f1b1b79478d2f96384498e81bf4 (diff)
[add] gui package. moved button.lisp into gui
-rw-r--r--gui/button.lisp (renamed from src/interactive/button.lisp)0
-rw-r--r--wheelwork-gui.asd9
-rw-r--r--wheelwork.asd2
3 files changed, 10 insertions, 1 deletions
diff --git a/src/interactive/button.lisp b/gui/button.lisp
index 7c94663..7c94663 100644
--- a/src/interactive/button.lisp
+++ b/gui/button.lisp
diff --git a/wheelwork-gui.asd b/wheelwork-gui.asd
new file mode 100644
index 0000000..aa58010
--- /dev/null
+++ b/wheelwork-gui.asd
@@ -0,0 +1,9 @@
+(asdf:defsystem #:wheelwork-gui
+ :description "GUI elments for wheelwork"
+ :author "colin <colin@cicadas.surf>"
+ :license "GPL-3.0"
+ :version "0.0.1"
+ :serial t
+ :depends-on (#:wheelwork)
+ :pathname "gui/"
+ :components ((:file "button")))
diff --git a/wheelwork.asd b/wheelwork.asd
index 0629d82..8d12b84 100644
--- a/wheelwork.asd
+++ b/wheelwork.asd
@@ -39,7 +39,7 @@
:components ((:file "interactive")
(:file "image")
(:file "text")
- (:file "button")
+
(:file "frameset")
(:file "sprite")
(:file "canvas")))