cl-pcg.asd @ 97926c261ee7

Clean up the high-level API into something presentable
author Steve Losh <steve@stevelosh.com>
date Thu, 16 Mar 2017 22:39:40 +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")))))