diff options
Diffstat (limited to 'cl-raytracer.asd')
| -rw-r--r-- | cl-raytracer.asd | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/cl-raytracer.asd b/cl-raytracer.asd new file mode 100644 index 0000000..5727214 --- /dev/null +++ b/cl-raytracer.asd @@ -0,0 +1,11 @@ +;;;; cl-raytracer.asd + +(asdf:defsystem #:cl-raytracer + :description "Describe cl-raytracer here" + :author "Jakob L. Kreuze" + :license "GPL" + :version "0.0.1" + :serial t + :depends-on (#:trivia) + :components ((:file "cl-raytracer")) + :entry-point (uiop:symbol-call :cl-raytracer "MAIN")) |