blob: 7ee07f0f39eca2de3644aa5e12485c594194a362 (
plain)
1
2
3
4
5
6
7
8
9
10
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")))
|