Skip to content

Commit

Permalink
fix: make breeze {compil,load}able even if quicklisp isn't loaded
Browse files Browse the repository at this point in the history
  • Loading branch information
fstamour committed Jul 18, 2023
1 parent 7051f34 commit 13a71a4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/project.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,14 @@
"Scaffold a project using quickproject's make-project."
(apply #'quickproject:make-project args))


(defun ql-local-project-directories ()
"Get the list of quicklisp local-projects directories (as strings)."
#+quicklisp
(mapcar #'namestring
ql:*local-project-directories*))
ql:*local-project-directories*)
;; To appease sbcl's type checking xD
#-quicklisp (list))

(defun choose-local-project-directories ()
(let ((directories (ql-local-project-directories)))
Expand Down

0 comments on commit 13a71a4

Please sign in to comment.