aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorColin Okay <colin@cicadas.surf>2022-06-21 06:29:55 -0500
committerColin Okay <colin@cicadas.surf>2022-06-21 06:29:55 -0500
commit918fa5f7a994c3aa6ec4af9005e8a3375b4149af (patch)
treec0e2c1627b5454b94b0fb62c330391f628dd9102
initial commit
-rw-r--r--.gitignore1
-rw-r--r--package.lisp4
-rw-r--r--wheelwork.asd11
-rw-r--r--wheelwork.lisp3
4 files changed, 19 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..b25c15b
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+*~
diff --git a/package.lisp b/package.lisp
new file mode 100644
index 0000000..f94e1c2
--- /dev/null
+++ b/package.lisp
@@ -0,0 +1,4 @@
+;;;; package.lisp
+
+(defpackage #:wheelwork
+ (:use #:cl))
diff --git a/wheelwork.asd b/wheelwork.asd
new file mode 100644
index 0000000..7ee07f0
--- /dev/null
+++ b/wheelwork.asd
@@ -0,0 +1,11 @@
+;;;; wheelwork.asd
+
+(asdf:defsystem #:wheelwork
+ :description "Describe wheelwork here"
+ :author "Your Name <your.name@example.com>"
+ :license "Specify license here"
+ :version "0.0.1"
+ :serial t
+ :depends-on (#:cl-opengl #:sdl2 #:varjo #:defclass-std #:3d-vectors #:3d-matrices)
+ :components ((:file "package")
+ (:file "wheelwork")))
diff --git a/wheelwork.lisp b/wheelwork.lisp
new file mode 100644
index 0000000..e7c3546
--- /dev/null
+++ b/wheelwork.lisp
@@ -0,0 +1,3 @@
+;;;; wheelwork.lisp
+
+(in-package #:wheelwork)