added more links on the webpage
[cl-graph.git] / cl-graph-test.asd
1 ;;; -*- Mode: Lisp; package: cl-user; Syntax: Common-lisp; Base: 10 -*-
2
3 (in-package :common-lisp-user)
4 (defpackage #:cl-graph-test-system (:use #:cl #:asdf))
5 (in-package #:cl-graph-test-system)
6
7 (defsystem cl-graph-test
8   :author "Gary Warren King <gwking@metabang.com>"
9   :maintainer "Gary Warren King <gwking@metabang.com>"
10   :licence "MIT Style License"
11   :description "Tests for CL-Graph"
12   :components ((:module
13                 "setup"
14                 :pathname "unit-tests/"
15                 :components
16                 ((:file "package")
17                  (:file "test-graph" :depends-on ("package"))
18                  ))
19                (:module 
20                 "unit-tests"
21                 :pathname "unit-tests/"
22                 :depends-on ("setup")
23                 :components
24                 ((:file "test-graph-container")
25                  (:file "test-connected-components")
26                  ;;(:file "test-graph-algorithms")
27                  (:file "test-api")
28                  ))
29                
30                (:module 
31                 "dev"
32                 :components
33                 ((:static-file "notes.text"))))
34   :depends-on (:cl-graph :lift))
35
36 ;; 2008-09-24 - I don't know if this will work or not 
37 ;; i.e., will it happen at the right time wrt everything else
38 #+asdf-system-connections
39 (asdf:defsystem-connection cl-graph-test-and-cl-mathstats
40   :requires (cl-graph moptilities)
41   :components ((:module 
42                 "unit-tests"
43                 :components
44                 ((:file "test-graph-metrics")))))