flax.asd @ 630bc79afdfd

Add tracing lines
author Steve Losh <steve@stevelosh.com>
date Thu, 15 Mar 2018 00:28:01 -0400
parents 148a6a1cc9eb
children 2c3734fe6cd1
(asdf:defsystem :flax
  :description "Weaving art from seeds."

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

  :depends-on (

               :sb-cga ; for lofi-tri only
               :cl-pcg
               :cl-svg
               :cl-vectors
               :iterate
               :losh
               :zpng

               )

  :serial t
  :components
  ((:module "vendor" :serial t
    :components ((:file "quickutils-package")
                 (:file "quickutils")
                 (:module "lofi-tri"
                  :components ((:file "lofi.tri")))))
   (:file "package")
   (:module "src" :serial t
    :components
    ((:file "base")
     (:file "coordinates")
     (:file "colors")
     (:module "drawing" :serial t
      :components ((:file "api")
                   (:file "png")
                   (:file "svg")))
     (:module "looms" :serial nil
      :components
      ((:file "001-triangles")
       (:file "002-wobbly-lines")
       (:file "003-basic-l-systems")
       (:file "004-turtle-curves")
       (:file "005-simple-triangulations")
       (:file "006-tracing-lines")))))))