Adjust Bob so we can use quickload the project to get all dependencies
This commit is contained in:
10
bob.lisp
10
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))
|
||||
|
||||
Reference in New Issue
Block a user