summaryrefslogtreecommitdiff
path: root/l-system.asd
blob: 335fd9ebb11b0e0d36c43af469a316ddfe0abc65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
;;;; l-system.asd

(asdf:defsystem #:l-system
  :description "L-system or Lindenmayer system on lists"
  :author "Bruno Cichon <ebrasca.ebrasca@gmail.com>"
  :license "GPLv3+"
  :pathname "src"
  :serial t
  :depends-on (:sb-cga
	       :iterate)
  :components ((:file "package")
               (:file "l-system")))