13 lines
428 B
Common Lisp
13 lines
428 B
Common Lisp
(in-package #:asdf-user)
|
|
|
|
(defsystem :scopes-tst9
|
|
:author "cyberconcepts.org Team <team@cyberconcepts.org>"
|
|
:license "MIT"
|
|
:version "0.0.1"
|
|
:homepage "https://www.cyberconcepts.org"
|
|
:description "testing client for web applications / server systems"
|
|
:depends-on (:scopes :scopes-auth)
|
|
:components ((:file "main"))
|
|
:build-operation "program-op"
|
|
:build-pathname "bin/tst9"
|
|
:entry-point "scopes/app/tst9:main")
|