cl-chip8.asd @ 205427feb9fe
default tip
Update to build with the latest version of my utility library
author |
Steve Losh <steve@stevelosh.com> |
date |
Sun, 06 Aug 2017 20:29:52 -0400 |
parents |
b1c263ecec31 |
children |
(none) |
(asdf:defsystem :cl-chip8
:name "chip8"
:description "Simple Chip-8 emulator."
:author "Steve Losh <steve@stevelosh.com>"
: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")))))))