25 lines
967 B
Common Lisp
25 lines
967 B
Common Lisp
(in-package #:asdf-user)
|
|
|
|
(defsystem :scopes-substrate
|
|
:author "cyberconcepts.org Team <team@cyberconcepts.org>"
|
|
:license "MIT"
|
|
:version "0.0.1"
|
|
:homepage "https://www.cyberconcepts.org"
|
|
:description "Communication substrate."
|
|
:depends-on (:alexandria :cl-dotenv :cl-readline :com.inuoe.jzon
|
|
:flexi-streams :ironclad :local-time :log4cl
|
|
:lparallel :qbase64 :serapeum :str
|
|
:scopes-core)
|
|
:components ((:file "config" :depends-on ("util/util"))
|
|
(:file "substrate/substrate"
|
|
:depends-on ("config"))
|
|
(:file "util/util"))
|
|
:long-description "scopes/substrate: Communication substrate, sort of new core."
|
|
:in-order-to ((test-op (test-op "scopes-substrate/test"))))
|
|
|
|
(defsystem :scopes-substrate/test
|
|
:depends-on (:scopes-substrate)
|
|
:components ( (:file "test/test-substrate"))
|
|
:perform (test-op (o c)
|
|
(symbol-call :scopes/test-substrate :run)))
|
|
|