cl-chip8.asd @ 16ee9cf6d798

Remove optimization nutbaggery and fix the sound init main thread bullshit
author Steve Losh <steve@stevelosh.com>
date Tue, 22 Nov 2016 11:55:23 +0000
parents ad512d2a802f
children 2e803dec5d58 ee000116796f
(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-arrows
               :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 "emulator")
                             (:file "debugger")
                             (:file "gui")))))