blob: d2515ed3a0cfee0502845ad0e0e29824bb450ddb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
(asdf:defsystem #:wheelwork-examples
:description "Examples using wheelwork"
:author "colin <colin@cicadas.surf>"
:license "GPL-3.0"
:version "0.0.1"
:serial t
:depends-on (#:wheelwork)
:pathname "examples/"
:components ((:file "01-bitmap-display")
(:file "02-moving-bitmp")
(:file "03-font-render")
(:file "04-a-button")
(:file "05-frameset-animation")
(:file "06-sprite")))
|