jarl.asd @ d23a34c34dc3

Split main.lisp into basic/mop files
author Steve Losh <steve@stevelosh.com>
date Thu, 13 Aug 2020 22:06:44 -0400
parents d093b64cf92c
children 37cd2173940e
(asdf:defsystem :jarl
  :description "JSON (Another Reimplementation) in Lisp"
  :author "Steve Losh <steve@stevelosh.com>"
  :homepage "https://docs.stevelosh.com/jarl/"

  :license "MIT"
  :version "0.0.1"

  :depends-on (:closer-mop)

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

  :serial t
  :components ((:module "src" :serial t
                :components ((:file "package")
                             (:file "basic")
                             (:file "mop")))))


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

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

  :depends-on (:jarl :1am :alexandria :yason :chancery)

  :serial t
  :components ((:module "test"
                :serial t
                :components ((:file "package")
                             (:file "tests"))))

  :perform (asdf:test-op (op system)
             (funcall (read-from-string "jarl/test:run-tests"))))