18 lines
515 B
Common Lisp
18 lines
515 B
Common Lisp
#|
|
|
|
|
preamble.lisp
|
|
|
|
For whatever reason, I don't keep this project in my
|
|
~/quicklisp/local-projects directory. So I have this preamble bit
|
|
of code that will push your current directory to Quicklisp.
|
|
|
|
|#
|
|
|
|
;; Assume the project is in the current working directory. It's
|
|
;; harmless, probably.
|
|
(eval-when (:compile-toplevel :load-toplevel :execute)
|
|
(pushnew (uiop:getcwd) ql:*local-project-directories*)
|
|
|
|
;; Load em' up. We use SLY so load SLYNK instead of SWANK here.
|
|
(ql:quickload '(:cl-deck-builder2 :slynk)))
|