From a76bfbf944d8ac89b7581ed378f4782084aa404a Mon Sep 17 00:00:00 2001 From: Logan Hunt Date: Tue, 31 May 2022 23:23:58 -0700 Subject: User can create new category on the CLI --- lispruns.asd | 47 +++++++++++++++++++++++------------------------ 1 file changed, 23 insertions(+), 24 deletions(-) (limited to 'lispruns.asd') diff --git a/lispruns.asd b/lispruns.asd index 4f6b6d8..98faa3f 100644 --- a/lispruns.asd +++ b/lispruns.asd @@ -1,25 +1,24 @@ (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 ("database/category" - "database/run" - "util" - "config" - "ui" - "speedrun")))) + :description "A speedrun timer using n-curses written in lisp" + :version "0.1" + :author "Simponic" + :depends-on (: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 ("database/category" + "database/run" + "util" + "config" + "ui" + "speedrun")))) -- cgit v1.2.3-70-g09d2