diff options
| author | Logan Hunt <loganjh@amazon.com> | 2022-05-24 16:22:00 -0700 |
|---|---|---|
| committer | Logan Hunt <loganjh@amazon.com> | 2022-05-24 16:22:00 -0700 |
| commit | 47b6bdf8b737bf12f5f7b8839ed2389ff28c723c (patch) | |
| tree | b5be62069a96b7461b8ec4bae588d375591616e3 /lispruns.asd | |
| parent | 3db9a2eb7a7d14ce935f5902b0c21ce4fd5eb729 (diff) | |
| download | speedrun-timer-47b6bdf8b737bf12f5f7b8839ed2389ff28c723c.tar.gz speedrun-timer-47b6bdf8b737bf12f5f7b8839ed2389ff28c723c.zip | |
Write code into systems and add formatting for highlight lists
Diffstat (limited to 'lispruns.asd')
| -rw-r--r-- | lispruns.asd | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/lispruns.asd b/lispruns.asd new file mode 100644 index 0000000..ef870b7 --- /dev/null +++ b/lispruns.asd @@ -0,0 +1,25 @@ +(asdf:defsystem "lispruns" + :description "A speedrun timer using n-curses written in lisp" + :version "0.1" + :author "Simponic" + :depends-on (:unix-opts + :mito + :sxql + :cl-ppcre + :croatoan + :local-time) + :components ((:file "util") ;; Miscellaneous helpers + (:file "config") ;; For importing category configuration files + (:file "digits") ;; Lisp file with cool ascii digits + (:file "text" :depends-on ("digits")) ;; Helper functions for performing figlet-like actions and such + (:file "time") ;; Custom time forms + (:file "ui" :depends-on ("util" "text" "time")) ;; Functions to draw the UI + (:file "speedrun" :depends-on ("util")) ;; The actual timer logic + (:file "database/category") ;; Category DAO + (:file "database/run") ;; Run DAO + (:file "main" :depends-on ("util" + "config" + "ui" + "speedrun" + "database/category" + "database/run")))) |
