Update build.lisp
This commit is contained in:
@ -9,6 +9,9 @@
|
|||||||
(defun cli ()
|
(defun cli ()
|
||||||
"Build the CLI application executable."
|
"Build the CLI application executable."
|
||||||
(sb-ext:disable-debugger)
|
(sb-ext:disable-debugger)
|
||||||
|
#+quicklisp
|
||||||
|
(ql:quickload :truth-table/cli)
|
||||||
|
#-quicklisp
|
||||||
(asdf:load-system :truth-table/cli)
|
(asdf:load-system :truth-table/cli)
|
||||||
(require :truth-table/cli)
|
(require :truth-table/cli)
|
||||||
(sb-ext:save-lisp-and-die
|
(sb-ext:save-lisp-and-die
|
||||||
@ -20,6 +23,9 @@
|
|||||||
(defun web ()
|
(defun web ()
|
||||||
"Build web CLI application executable."
|
"Build web CLI application executable."
|
||||||
(sb-ext:disable-debugger)
|
(sb-ext:disable-debugger)
|
||||||
|
#+quicklisp
|
||||||
|
(ql:quickload :truth-table/web)
|
||||||
|
#-quicklisp
|
||||||
(asdf:load-system :truth-table/web)
|
(asdf:load-system :truth-table/web)
|
||||||
(require :truth-table/web)
|
(require :truth-table/web)
|
||||||
(sb-ext:save-lisp-and-die
|
(sb-ext:save-lisp-and-die
|
||||||
|
|||||||
Reference in New Issue
Block a user