sand.asd @ bc8ed2a9b4c0

Start cleaning this repo up
author Steve Losh <steve@stevelosh.com>
date Fri, 26 Jan 2018 21:27:01 -0500
parents 6494ca97e78b
children e7c56841f0f4
(asdf:defsystem :sand
  :name "sand"
  :description "A little sandbox to play around in."

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

  :license "MIT"
  :version "0.0.1"

  :depends-on (

               #+sbcl :sb-sprof
               ;; :cffi
               ;; :cl-algebraic-data-type
               ;; :cl-charms
               ;; :cl-fad
               ;; :cl-ppcre
               ;; :clss
               ;; :compiler-macro
               ;; :cl-conspack
               ;; :drakma
               ;; :easing
               ;; :flexi-streams
               ;; :function-cache
               :iterate
               :losh
               ;; :parenscript
               ;; :parse-float
               ;; :plump
               ;; :rs-colors
               ;; :sanitize
               ;; :sketch
               ;; :split-sequence
               ;; :storable-functions
               ;; :trivia
               ;; :trivial-main-thread
               ;; :vex
               ;; :yason

               )

  :serial t
  :components
  ((:module "vendor"
    :serial t
    :components ((:file "quickutils")))
   (:file "package")))