cl-pcg.asd @ 5d2375b8ba78

Update docs
author Steve Losh <steve@stevelosh.com>
date Thu, 16 Mar 2017 23:28:51 +0000
parents d8537fcd89e5
children 555f4470bf64
(asdf:defsystem :cl-pcg
  :description "A bare-bones Permuted Congruential Generator implementation in pure Common Lisp."

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

  :license "MIT"
  :version "1.0.0"

  :depends-on (#+sbcl :sb-rotate-byte)

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