flax.asd @ ba8de6322022

Refactor drawing array handling, add lparallel
author Steve Losh <steve@stevelosh.com>
date Tue, 06 Feb 2018 18:05:18 -0500
parents fbdceb03ce0e
children eefee58dd493
(asdf:defsystem :flax
  :description "Weaving art from seeds."

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

  :depends-on (:cl-pcg
               :cl-vectors
               :iterate
               :losh
               :lparallel
               :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")))))))