cl-digraph.asd @ e7ed5e5a2d9e
default tip
Use ERROR instead of an ECASE form with no clauses.
SBCL outputs compilation warnings for ECASE forms missing clauses and that
causes Quicklisp test failures.
author |
Robert Brown <robert.brown@gmail.com> |
date |
Sat, 04 Nov 2023 10:42:34 -0400 |
parents |
7e80eda84170 |
children |
(none) |
(asdf:defsystem :cl-digraph
:description "Simple directed graphs for Common Lisp."
:author "Steve Losh <steve@stevelosh.com>"
:homepage "http://docs.stevelosh.com/cl-digraph/"
:license "MIT/X11"
:version "1.4.0"
:depends-on ()
:in-order-to ((asdf:test-op (asdf:test-op :cl-digraph.test)))
:serial t
:components ((:module "vendor" :serial t
:components ((:file "quickutils-package")
(:file "quickutils")))
(:file "package")
(:module "src" :serial t
:components ((:file "directed-graph")))))