added more links on the webpage
[cl-graph.git] / cl-graph.asd
1 ;;; -*- Mode: Lisp; package: cl-user; Syntax: Common-lisp; Base: 10 -*-
2
3 (in-package #:common-lisp-user)
4 (defpackage #:cl-graph-system (:use #:cl #:asdf))
5 (in-package #:cl-graph-system)
6
7 (unless (or (member :asdf-system-connections *features*)
8             (find-system 'asdf-system-connections nil))
9   (warn "The CL-Graph system would enjoy having asdf-system-connections 
10 around. See 
11 http://www.cliki.net/asdf-system-connections for details and download
12 instructions."))
13 (when (and (not (member :asdf-system-connections *features*))
14            (find-system 'asdf-system-connections nil))
15   (operate 'load-op 'asdf-system-connections))
16
17 (defsystem cl-graph
18   :version "0.10.2"
19   :author "Gary Warren King <gwking@metabang.com>"
20   :maintainer "Gary Warren King <gwking@metabang.com>"
21   :licence "MIT Style License"
22   :description "Graph manipulation utilities for Common Lisp"
23   :components ((:static-file "COPYING")
24                (:module 
25                 "dev"
26                 :components 
27                 ((:file "package")
28                  (:file "api"
29                         :depends-on ("package"))
30                  (:file "macros"
31                         :depends-on ("package"))
32                  (:file "graph"
33                         :depends-on ("api" "macros"))
34                  (:file "graph-container"
35                         :depends-on ("graph"))
36                  (:file "graph-matrix"
37                         :depends-on ("graph"))
38                  (:file "graph-algorithms"
39                         :depends-on ("graph"))
40                  #+(or)
41                  (:file "dynamic-classes"
42                         :depends-on ("graph"))
43                  (:static-file "notes.text")
44
45                  (:module "graphviz" :depends-on ("graph")
46                           :components ((:file "graphviz-support")))))
47                (:module 
48                 "website"
49                 :components 
50                 ((:module "source"
51                           :components ((:static-file "index.md"))))))
52   :in-order-to ((test-op (load-op :cl-graph-test)))
53   :perform (test-op :after (op c)
54                     (funcall
55                       (intern (symbol-name '#:run-tests) :lift)
56                       :config :generic))
57   :depends-on ((:version :metatilities-base "0.6.0")
58                (:version :cl-containers "0.12.0")
59                :metabang-bind
60                ))
61
62 (defmethod operation-done-p 
63            ((o test-op) (c (eql (find-system 'cl-graph))))
64   (values nil))
65
66 #+asdf-system-connections
67 (asdf:defsystem-connection cl-graph-and-cl-variates
68   :requires (cl-graph cl-variates)
69   :components ((:module 
70                 "dev"
71                 :components
72                 ((:file "graph-and-variates")
73                  (:file "graph-generation"
74                         :depends-on ("graph-and-variates"))))))
75
76 #+asdf-system-connections
77 (asdf:defsystem-connection cl-graph-and-dynamic-classes
78   :requires (cl-graph dynamic-classes)
79   :components ((:module 
80                 "dev"
81                 :components
82                 ((:file "dynamic-classes")))))
83
84 #+asdf-system-connections
85 (asdf:defsystem-connection cl-graph-and-cl-graphviz
86   :requires (cl-graph cl-graphviz)
87   :components ((:module 
88                 "dev"
89                 :components
90                 ((:module "graphviz"
91                           :components
92                           ((:file "graphviz-support-optional")))))))
93
94 #+asdf-system-connections
95 (asdf:defsystem-connection cl-graph-and-metacopy
96   :requires (cl-graph metacopy)
97   :components ((:module 
98                 "dev"
99                 :components ((:file "copying")))))
100
101 #+asdf-system-connections
102 (asdf:defsystem-connection cl-graph-and-cl-mathstats
103   :requires (cl-graph cl-mathstats)
104   :components ((:module 
105                 "dev"
106                 :components
107                 ((:file "graph-metrics")))))
108
109 #+asdf-system-connections
110 (asdf:defsystem-connection cl-graph-and-moptilities
111   :requires (cl-graph moptilities)
112   :components ((:module 
113                 "dev"
114                 :components
115                 ((:file "subgraph-containing")))))
116
117
118
119