sand.asd @ 5c5070c21269

Add little immutable struct thing
author Steve Losh <steve@stevelosh.com>
date Tue, 17 Jan 2017 18:37:07 +0000
parents 8cf52a515a48
children 02235ffe8b98
(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
               :flexi-streams
               :function-cache
               :html-entities
               :iterate
               :losh
               :parse-float
               :parenscript
               :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")
                 (:module "turing-omnibus"
                  :serial t
                  :components ((:file "wallpaper")
                               (:file "monte-carlo")
                               (:file "minimax")))))))