blob: e9f5629accd936f229accb1db3eaaa9e8edbdaed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
;;;; wheelwork.asd
(asdf:defsystem #:wheelwork
:description "A sprite system for games and GUIs"
:author "colin <colin@cicadas.surf>"
:license "Artistic-2.0"
:version "0.0.1"
:serial t
:depends-on (#:cl-opengl
#:sdl2
#:varjo
#:defclass-std
#:3d-vectors
#:3d-matrices
#:hyperquirks)
:components ((:file "package")
(:file "wheelwork")))
|