mycelium.asd @ 75152f6efda6

Pivot
author Steve Losh <steve@stevelosh.com>
date Tue, 20 Apr 2021 18:01:32 -0400
parents dark.asd@614ad4a1d44e
children (none)
(asdf:defsystem :mycelium
  :name "mycelium"
  :description "Lisp Game Jam, Spring 2021"

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

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

  :depends-on (#+sbcl #:sb-sprof
               :alexandria
               :boots
               :str
               :chancery
               :cl-pcg
               :iterate
               :local-time
               :losh)

  :serial t
  :components
  ((:module "src" :serial t
    :components ((:file "package")
                 (:file "main")))))