mazes.asd @ 367e393b0992

Add the Hunt and Kill algorithm, and try out iterate
author Steve Losh <steve@stevelosh.com>
date Thu, 30 Jun 2016 23:23:24 +0000
parents 901e9fc8958d
children (none)
(asdf:defsystem #:mazes
  :name "mazes"
  :description "Working through the Mazes for Programmers book."

  :author "Steve Losh <steve@stevelosh.com>"

  :license "MIT/X11"
  :version "0.0.1"

  :depends-on (#:defstar
               #:sketch
               #:sb-cga
               #:snakes
               #:iterate
               #:cl-strings
               #:cl-arrows)

  :serial t
  :components
  ((:file "quickutils") ; quickutils package ordering crap
   (:file "package")
   (:module "src"
    :serial t
    :components ((:file "utils")
                 (:file "fps")
                 (:file "grid")
                 (:file "generation")
                 (:file "demo")))))