cl-scopes/scopes-web.asd

20 lines
674 B
Common Lisp

(in-package #:asdf-user)
(defsystem :scopes-web
:author "cyberconcepts.org Team <team@cyberconcepts.org>"
:license "MIT"
:version "0.0.1"
:homepage "https://www.cyberconcepts.org"
:description "Web client and server functionality."
:depends-on (:clack :dexador :lack
:scopes-core)
:components ((:file "web/client")
(:file "web/server"))
:long-description "scopes/web: Web server and web/API/REST client."
:in-order-to ((test-op (test-op "scopes-web/test"))))
(defsystem :scopes-web/test
:depends-on (:scopes-web)
:components ((:file "test/test-web"))
:perform (test-op (o c)
(symbol-call :scopes/test-web :run)))