summaryrefslogtreecommitdiff
path: root/turtle-graphics.asd
blob: 897ece0ec90b919df17c83c154c71ac85f43e099 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
;;;; turtle-graphics.asd
;;;; Copyright (C) 2017 Bruno Cichon <ebrasca.ebrasca@openmailbox.org>
;;;; This code is licensed under the GPLv3 license.

(asdf:defsystem #:turtle-graphics
  :description "This make computer graphics defined by turtle movements."
  :author "Bruno Cichon <ebrasca.ebrasca@openmailbox.org>"
  :license "GPLv3"
  :depends-on (#:iterate
               #:rtg-math)
  :serial t
  :components ((:file "package")
               (:file "turtle")))