summaryrefslogtreecommitdiff
path: root/turtle-graphics.asd
diff options
context:
space:
mode:
Diffstat (limited to 'turtle-graphics.asd')
-rw-r--r--turtle-graphics.asd13
1 files changed, 13 insertions, 0 deletions
diff --git a/turtle-graphics.asd b/turtle-graphics.asd
new file mode 100644
index 0000000..897ece0
--- /dev/null
+++ b/turtle-graphics.asd
@@ -0,0 +1,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")))