diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2025-02-14 20:39:00 +0000 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2025-02-14 20:39:00 +0000 |
commit | d328bfbbdf0f9853ec600d71c4372e843dcdbf8f (patch) | |
tree | 7eedecb26a7022d723f46c5396ec12eee147b030 /bob.lisp | |
parent | fba391a6e80db15926db79a3cf889ed096fb7849 (diff) | |
download | cantedraw-d328bfbbdf0f9853ec600d71c4372e843dcdbf8f.tar.gz cantedraw-d328bfbbdf0f9853ec600d71c4372e843dcdbf8f.tar.bz2 cantedraw-d328bfbbdf0f9853ec600d71c4372e843dcdbf8f.zip |
Adjust Bob so we can use quickload the project to get all dependencies
Diffstat (limited to 'bob.lisp')
-rw-r--r-- | bob.lisp | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -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)) |