cl-pcg.asd @ e405c902bfe2

Fix doc typo
author Steve Losh <steve@stevelosh.com>
date Thu, 23 Mar 2017 21:57:50 +0000
parents 555f4470bf64
children 9e2c59c4c13d
(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)

  :in-order-to ((asdf:test-op (asdf:test-op :cl-pcg.test)))

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