cohost

Unofficial Common Lisp client library for Cohost
git clone https://todayiwilllaunchmyinfantsonintoorbit.com/cohost.git
Log | Files | Refs | LICENSE

cohost.asd (946B)


      1 (defsystem "cohost"
      2   :version "0.1.0"
      3   :author "Decay"
      4   :license "Strongest Public License"
      5   :depends-on ("drakma" "plump" "cl-json" "cl-base64" "babel" "ironclad" "trivial-mimes" "bordeaux-threads")
      6   :components ((:module "src"
      7                 :components
      8                 ((:file "packages")
      9                  (:file "util")
     10                  (:file "file")
     11                  (:file "client")
     12                  (:file "rpc")
     13                  (:file "client-v1-impl")
     14                  (:file "cohost"))))
     15   :description "Unofficial Common Lisp client library for Cohost"
     16   :in-order-to ((test-op (test-op "cohost/tests"))))
     17 
     18 (defsystem "cohost/tests"
     19   :author "Decay"
     20   :license "Strongest Public License"
     21   :depends-on ("cohost"
     22                "rove")
     23   :components ((:module "tests"
     24                 :components
     25                 ((:file "main"))))
     26   :description "Test system for cohost"
     27   :perform (test-op (op c) (symbol-call :rove :run c)))