forked from hraban/cl-graph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcl-graph.asd
54 lines (50 loc) · 1.51 KB
/
cl-graph.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
;;; -*- Mode: Lisp; package: cl-user; Syntax: Common-lisp; Base: 10 -*-
(in-package #:common-lisp-user)
(defpackage #:cl-graph-system (:use #:cl #:asdf))
(in-package #:cl-graph-system)
(defsystem cl-graph
:version "0.10.2"
:author "Gary Warren King <[email protected]>"
:maintainer "Gary Warren King <[email protected]>"
:licence "MIT Style License"
:description "Graph manipulation utilities for Common Lisp"
:components ((:static-file "COPYING")
(:module
"dev"
:components
((:file "package")
(:file "api"
:depends-on ("package"))
(:file "macros"
:depends-on ("package"))
(:file "graph"
:depends-on ("api" "macros"))
(:file "graph-container"
:depends-on ("graph"))
(:file "graph-matrix"
:depends-on ("graph"))
(:file "graph-algorithms"
:depends-on ("graph"))
#+(or)
(:file "dynamic-classes"
:depends-on ("graph"))
(:static-file "notes.text")
(:module "graphviz" :depends-on ("graph")
:components ((:file "graphviz-support")))))
(:module
"website"
:components
((:module "source"
:components ((:static-file "index.md"))))))
:in-order-to ((test-op (load-op :cl-graph-test)))
:perform (test-op :after (op c)
(funcall
(intern (symbol-name '#:run-tests) :lift)
:config :generic))
:depends-on ((:version :metatilities-base "0.6.0")
(:version :cl-containers "0.12.0")
:metabang-bind
))
(defmethod operation-done-p
((o test-op) (c (eql (find-system 'cl-graph))))
(values nil))