conserve.asd @ 72a8f71c2670

Move things around
author Steve Losh <steve@stevelosh.com>
date Tue, 25 Dec 2018 22:50:31 -0500
parents c50aa06f13bd
children 5a40b5b38fe3
(asdf:defsystem :conserve
  :description "Yet Another CSV Library for Common Lisp."

  :author "Steve Losh <steve@stevelosh.com>"
  :homepage "https://sjl.bitbucket.io/conserve/"
  :license "MIT/X11"
  :version "0.0.1"

  :depends-on ()

  :in-order-to ((asdf:test-op (asdf:test-op :conserve/test)))

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

(asdf:defsystem :conserve/test
  :description
  "Test suite for conserve."

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

  :license "MIT/X11"

  :depends-on (:conserve :1am)

  :serial t
  :components ((:file "package.test")
               (:module "test" :serial t :components
                ((:file "tests"))))
  :perform (asdf:test-op (op system)
             (funcall (read-from-string "conserve/test:run-tests"))))