decons/decons.asd

23 lines
852 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 un-intelligence."
:depends-on (:alexandria
:scopes-core :scopes/test)
:components ((:file "asys" :depends-on ("mlx"))
(:file "mlx" :depends-on ("recurse"))
(:file "recurse")
(:file "xplore"))
: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")
(:file "test-asys" :depends-on ("test-decons")))
:perform (test-op (o c)
(symbol-call :decons/test-decons :run)))