cl-directed-graph.asd @ 5504cf7fd389

Initial commit
author Steve Losh <steve@stevelosh.com>
date Sat, 05 Nov 2016 19:34:10 +0000
parents (none)
children c3d408862ac3
(asdf:defsystem :cl-directed-graph
  :name "directed-graph"
  :description "Simple directed graphs in Common Lisp."

  :author "Steve Losh <steve@stevelosh.com>"

  :license "MIT/X11"
  :version "1.0.0"

  :depends-on ()

  :serial t
  :components ((:module "vendor" :serial t
                :components ((:file "quickutils-package")
                             (:file "quickutils")))
               (:file "package")
               (:module "src" :serial t
                :components ((:file "directed-graph")))))