tdcb.asd @ 84fa1724b747 default tip

More work on the Huffman encoder and basic project skeleton
author Steve Losh <steve@stevelosh.com>
date Sun, 26 Jul 2020 16:49:17 -0400
parents 716d1110c12f
children (none)
(asdf:defsystem :tdcb
  :description "The Data Compression Book in Common Lisp"
  :author "Steve Losh <steve@stevelosh.com>"

  :license "MIT"

  :depends-on (:adopt
               :alexandria
               :losh
               :iterate
               :flexi-streams
               :pileup)

  :serial t
  :components ((:module "src" :serial t
                :components ((:file "package")
                             (:file "utilities")
                             (:file "bits")
                             (:file "main")
                             (:file "huffman")))))