aboutsummaryrefslogtreecommitdiff
path: root/bob.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'bob.lisp')
-rw-r--r--bob.lisp10
1 files changed, 6 insertions, 4 deletions
diff --git a/bob.lisp b/bob.lisp
index d9156d6..993b455 100644
--- a/bob.lisp
+++ b/bob.lisp
@@ -18,16 +18,18 @@
;;; Code:
+(pushnew (truename (uiop:getcwd))
+ ql:*local-project-directories*)
+
(defpackage bob
(:use :cl)
(:export :build :load-all))
(in-package :bob)
-(asdf:load-asd (merge-pathnames "cantedraw.asd" (uiop:getcwd)))
+(defun load-all ()
+ (ql:quickload :cantedraw :verbose t))
(defun build ()
+ (load-all)
(asdf:make :cantedraw))
-
-(defun load-all ()
- (asdf:load-system :cantedraw))