timecalc/timecalc.asd

21 lines
648 B
Common Lisp

;;;; timecalc.asd
(asdf:defsystem #:timecalc
:description "Describe timecalc here"
:author "a. fox"
:license "GPLv3"
:version "0.0.1"
:serial t
:depends-on (#:com.inuoe.jzon #:unix-opts #:with-user-abort #:ningle
#:cl-markup #:clack #:bordeaux-threads #:str #:cl-ppcre)
:components ((:file "logic")
(:file "web")
(:file "timecalc"))
:build-operation "program-op"
:build-pathname "bin/timecalc"
:entry-point "timecalc::main")
#+sb-core-compression
(defmethod asdf:perform ((o asdf:image-op) (c asdf:system))
(uiop:dump-image (asdf:output-file o c) :executable t :compression t))