-
Notifications
You must be signed in to change notification settings - Fork 3
/
cl-chip8.asd
32 lines (28 loc) · 947 Bytes
/
cl-chip8.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
29
30
31
32
(asdf:defsystem :cl-chip8
:name "chip8"
:description "Simple Chip-8 emulator."
:author "Steve Losh <[email protected]>"
:license "MIT/X11"
:version "1.0.0"
:depends-on (
:bordeaux-threads
:cl-opengl
:cl-portaudio
:iterate
:losh
:qtcore
:qtgui
:qtools
:qtopengl
)
:serial t
:components ((:module "vendor" :serial t
:components ((:file "quickutils-package")
(:file "quickutils")))
(:file "package")
(:module "src" :serial t
:components ((:file "debugger")
(:file "emulator")
(:module "gui" :serial t
:components ((:file "debugger")
(:file "screen")))))))