mirror of
git://git.code.sf.net/p/sbcl/sbcl
synced 2026-09-10 07:26:40 -04:00
For documentation, read contrib/sb-graph/readme.org and contrib/sb-graph/sb-graph.texinfo sb-graph requires the :sb-devel feature.
18 lines
500 B
Common Lisp
18 lines
500 B
Common Lisp
;;; -*- Lisp -*-
|
|
#-(or sb-testing-contrib sb-building-contrib)
|
|
(error "Can't build contribs with ASDF")
|
|
|
|
(asdf:defsystem "sb-graph"
|
|
:serial t
|
|
:components
|
|
((:module src
|
|
:serial t
|
|
:components
|
|
((:file "package")
|
|
(:file "graphing")
|
|
(:file "hooking"))))
|
|
:perform (load-op :after (o c) (provide 'sb-graph)))
|
|
|
|
;;; The tests for sb-graph are under tests/sb-graph.impure.lisp to
|
|
;;; take advantage of the sbcl regression tester features.
|