sand.asd @ 6b1e5154d5de

Add little easing system
author Steve Losh <steve@stevelosh.com>
date Mon, 06 Feb 2017 14:32:50 +0000
parents 02235ffe8b98
children a2ff64cc3ac9
(asdf:defsystem :sand
  :name "sand"
  :description "A little sandbox to play around in."

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

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

  :depends-on (

               #+sbcl :sb-sprof
               :cffi
               :cl-algebraic-data-type
               :cl-arrows
               :cl-charms
               :cl-fad
               :cl-ppcre
               :clss
               :compiler-macro
               :drakma
               :easing
               :flexi-streams
               :function-cache
               :html-entities
               :iterate
               :losh
               :parenscript
               :parse-float
               :plump
               :rs-colors
               :sanitize
               :sketch
               :split-sequence
               :trivia
               :vex
               :yason

               )

  :serial t
  :components
  ((:module "vendor"
    :serial t
    :components ((:file "quickutils")))
   (:file "package")
   (:module "src"
    :serial t
    :components ((:file "utils")
                 (:file "primes")
                 (:file "graphs")
                 (:file "graphviz")
                 (:file "hanoi")
                 (:file "urn")
                 (:file "random-numbers")
                 (:file "generic-arithmetic")
                 (:file "ropes")
                 (:file "sorting")
                 (:file "ascii")
                 (:file "dijkstra-maps")
                 #+sbcl (:file "ffi")
                 #+sbcl (:file "profiling")
                 (:file "binary-decision-diagrams")
                 (:file "zero-suppressed-decision-diagrams")
                 (:file "huffman-trees")
                 (:file "streams")
                 (:file "color-difference")
                 #+sbcl (:file "number-letters")
                 (:module "terrain"
                  :serial t
                  :components ((:file "diamond-square")))
                 (:module "parenscript"
                  :serial t
                  :components ((:file "compiler")))
                 (:file "sketch")
                 (:file "mandelbrot")
                 (:file "story")
                 (:file "qud")
                 (:file "istruct")
                 (:file "names")
                 (:file "easing")
                 (:module "turing-omnibus"
                  :serial t
                  :components ((:file "wallpaper")
                               (:file "monte-carlo")
                               (:file "minimax")))))))