sand.asd @ 778814a3ff72

Wrap linenoise with CFFI
author Steve Losh <steve@stevelosh.com>
date Tue, 30 Aug 2016 23:54:54 +0000
parents 56edfdd18674
children dc2c9931b634
(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 (#:cl-charms
               #:iterate
               #:cl-arrows
               #:cl-fad
               #:split-sequence
               #:parenscript
               #:sketch
               #:losh
               #:drakma
               #:yason
               #:flexi-streams
               #:sanitize
               #:html-entities
               #:plump
               #:clss
               #:cl-algebraic-data-type
               #:rs-colors
               #:cffi
               )

  :serial t
  :components
  ((:module "vendor"
    :serial t
    :components ((:file "quickutils")))
   (:file "package")
   (:module "src"
    :serial t
    :components ((:file "utils")
                 (:file "graphviz")
                 (:file "random-numbers")
                 (:file "ascii")
                 (:file "markov")
                 (:file "dijkstra-maps")
                 #+sbcl (:file "ffi")
                 (:file "binary-decision-diagrams")
                 (:file "huffman-trees")
                 (:file "color-difference")
                 (:module "terrain"
                  :serial t
                  :components ((:file "diamond-square")))
                 (:module "parenscript"
                  :serial t
                  :components ((:file "compiler")))
                 (:file "sketch")))))