Bumped version
[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 #:asdf-cl-graph-test (:use #:cl #:asdf))
5 (in-package #:asdf-cl-graph-test)
6
7 (defsystem cl-graph-test
8   :version "0.1"
9   :author "Gary Warren King <gwking@metabang.com>"
10   :maintainer "Gary Warren King <gwking@metabang.com>"
11   :licence "MIT Style License"
12   :description "Tests for CL-Graph"
13
14   :components ((:module 
15                 "unit-tests"
16                 :components
17                 ((:file "package")
18                  (:file "test-graph" :depends-on ("package"))
19                  (:file "test-graph-container" :depends-on ("test-graph"))
20                  (:file "test-connected-components" :depends-on ("test-graph"))
21                  (:file "test-graph-metrics" :depends-on ("test-graph"))
22                  (:file "test-graph-algorithms" :depends-on ("test-graph"))
23                  ))
24                
25                (:module 
26                 "dev"
27                 :components
28                 ((:static-file "notes.text"))))
29   :depends-on (cl-graph lift))