diff options
| author | Jakob L. Kreuze <zerodaysfordays@sdf.org> | 2020-07-21 22:18:25 -0400 |
|---|---|---|
| committer | Jakob L. Kreuze <zerodaysfordays@sdf.org> | 2020-07-21 22:18:35 -0400 |
| commit | 853020eb53d09c9b84eaf69152fa35d5a0542135 (patch) | |
| tree | 84d54ba432b674f3d5781b679d31130a04178f21 /cl-raytracer.asd | |
| parent | a4a81ba53c1adcefb38c2238f38ff8e0c3cc8094 (diff) | |
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")) |