14 lines
377 B
Common Lisp
14 lines
377 B
Common Lisp
(in-package #:asdf-user)
|
|
|
|
(defsystem :scopes-demo
|
|
:author "cyberconcepts.org Team <team@cyberconcepts.org>"
|
|
:license "MIT"
|
|
:version "0.0.1"
|
|
:homepage "https://www.cyberconcepts.org"
|
|
:description ""
|
|
:depends-on (:scopes :scopes-auth)
|
|
:components ((:file "main"))
|
|
:build-operation "program-op"
|
|
:build-pathname "bin/demo"
|
|
:entry-point "scopes/app/demo:main")
|
|
|