flax.asd @ fbdceb03ce0e

Add color support
author Steve Losh <steve@stevelosh.com>
date Mon, 05 Feb 2018 23:45:14 -0500
parents 2cb0d67b2cfa
children ba8de6322022
(asdf:defsystem :flax
  :description "Weaving art from seeds."

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

  :depends-on (:cl-pcg
               :cl-vectors
               :iterate
               :losh
               :zpng)

  :serial t
  :components ((:module "vendor" :serial t
                :components ((:file "quickutils-package")
                             (:file "quickutils")))
               (:file "package")
               (:module "src" :serial t
                :components
                ((:file "base")
                 (:file "coordinates")
                 (:file "colors")
                 (:file "drawing")
                 (:module "looms" :serial nil
                  :components
                  ((:file "001-triangles")
                   (:file "002-wobbly-lines")))))))