Status of the project as it was on 2025-03-07. The commit date is based on the modification time of the files.
13 lines
362 B
Common Lisp
13 lines
362 B
Common Lisp
;;;; chipgr8.asd
|
|
|
|
(asdf:defsystem #:chipgr8
|
|
:description "CHIP-8 emulator"
|
|
:author "Juhani Haverinen <juhani.haverinen@gmail.com>"
|
|
:license "Unlicense"
|
|
:depends-on (#:lispbuilder-sdl)
|
|
:serial t
|
|
:components ((:file "package")
|
|
(:file "chipgr8")
|
|
(:file "emulator")
|
|
(:file "graphics")
|
|
(:file "sdl")))
|