File: graph-matrix.asd

package info (click to toggle)
cl-graph 20141006-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 264 kB
  • ctags: 373
  • sloc: lisp: 2,601; makefile: 16
file content (25 lines) | stat: -rw-r--r-- 878 bytes parent folder | download | duplicates (2)
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
(defsystem :graph-matrix
  :description "build and manipulate matrix graph representations"
  :author ("Eric Schulte <schulte.eric@gmail.com>" "Thomas Dye")
  :version "0.0.0"
  :licence "GPL V3"
  :depends-on
  (alexandria metabang-bind curry-compose-reader-macros graph femlisp)
  :components
  ((:static-file "COPYING")
   (:file "package-matrix")
   (:file "graph-matrix" :depends-on ("package-matrix"))))

(defsystem :graph-matrix-test
  :description "test the matrix graph representations"
  :author ("Eric Schulte <schulte.eric@gmail.com>" "Thomas Dye")
  :version "0.0.0"
  :licence "GPL V3"
  :depends-on
  (alexandria metabang-bind stefil curry-compose-reader-macros
   graph graph-matrix)
  :components
  ((:static-file "COPYING")
   (:module "test"
    :components ((:file "package-matrix")
                 (:file "graph-matrix" :depends-on ("package-matrix"))))))