forked from andyhd/asteroids
-
Notifications
You must be signed in to change notification settings - Fork 1
/
asteroids.asd
29 lines (27 loc) · 1.16 KB
/
asteroids.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
;;;; asteroids.asd
(asdf:defsystem #:asteroids
:serial t
:description "An improved asteroids game with sounds"
:author "stacksmith [email protected]"
:license "Do Whatever The Fuck You Want (DWTFYF)"
:depends-on (#:lispbuilder-sdl
#:lispbuilder-sdl-gfx
#:lispbuilder-sdl-mixer)
:components ((:file "package")
(:file "asteroids")
(:static-file "sounds/banjo.mp3")
(:static-file "sounds/biding.mp3")
(:static-file "sounds/explode1.wav")
(:static-file "sounds/explode2.wav")
(:static-file "sounds/explode3.wav")
(:static-file "sounds/fire.wav")
(:static-file "sounds/haters.mp3")
(:static-file "sounds/life.wav")
(:static-file "sounds/lsaucer.wav")
(:static-file "sounds/music.mp3")
(:static-file "sounds/phaser.wav")
(:static-file "sounds/sfire.wav")
(:static-file "sounds/ssaucer.wav")
(:static-file "sounds/thrust.wav")
(:static-file "sounds/thumphi.wav")
(:static-file "sounds/thumplo.wav")))