19 lines
638 B
Common Lisp
19 lines
638 B
Common Lisp
(in-package #:asdf-user)
|
|
|
|
(defsystem :decons
|
|
:author "cyberconcepts.org Team <team@cyberconcepts.org>"
|
|
:license "MIT"
|
|
:version "0.0.1"
|
|
:homepage "https://www.cyberconcepts.org"
|
|
:description "Deconstruction as a method for implementing machine intelligence."
|
|
:depends-on (:alexandria
|
|
:scopes :scopes/test)
|
|
:components ((:file "decons"))
|
|
:long-description "decons: The base system of the decons project."
|
|
:in-order-to ((test-op (test-op "decons/test"))))
|
|
|
|
(defsystem :decons/test
|
|
:depends-on (:decons)
|
|
:components ((:file "test-decons"))
|
|
:perform (test-op (o c)
|
|
(symbol-call :test-decons :run)))
|