aboutsummaryrefslogtreecommitdiff
path: root/bob.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'bob.lisp')
-rw-r--r--bob.lisp13
1 files changed, 9 insertions, 4 deletions
diff --git a/bob.lisp b/bob.lisp
index 993b455..15368e0 100644
--- a/bob.lisp
+++ b/bob.lisp
@@ -13,11 +13,12 @@
;;; Commentary:
-;; Little bit of code scaffolding that makes it easy to load or build the
-;; system. Named after "Bob the Builder".
+;; Code scaffolding to make loading/building the system easy. Named after "Bob
+;; the Builder".
;;; Code:
+;; Try and push the current directory into the quicklisp project directories.
(pushnew (truename (uiop:getcwd))
ql:*local-project-directories*)
@@ -27,9 +28,13 @@
(in-package :bob)
+(defun init ()
+ (ql:quickload :cantedraw))
+
(defun load-all ()
- (ql:quickload :cantedraw :verbose t))
+ (init)
+ (asdf:load-system :cantedraw))
(defun build ()
- (load-all)
+ (init)
(asdf:make :cantedraw))