File: graph.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 (23 lines) | stat: -rw-r--r-- 794 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
(defsystem :graph
  :description "simple library for building and manipulating graphs"
  :version "0.0.0"
  :author ("Eric Schulte <schulte.eric@gmail.com>" "Thomas Dye")
  :licence "GPL V3"
  :depends-on (alexandria metabang-bind curry-compose-reader-macros)
  :components
  ((:static-file "COPYING")
   (:file "package")
   (:file "graph" :depends-on ("package"))))

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