diff --git a/README.md b/README.md index d3a076a..26edb29 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,19 @@ Gtk+3 on Common Lisp (see this [tutorial](https://lisp-journey.gitlab.io/blog/gui-programming-in-common-lisp-part-3-of-5-gtk3/)). -Requires the `cl-cffi-gtk` library. +## Installing + +Requires a Common Lisp (tested on SBCL), [Quicklisp](https://www.quicklisp.org/beta/#installation), +and the `cl-cffi-gtk` library. + +To install, simply symlink this directory into your Quicklisp `local-projects` +folder: + +``` +ln -s /path/to/cl-todo ~/.quicklisp/local-projects/cl-todo +``` + +Then, you can open up a REPL and use `(ql:quickload "cl-todo") to run. ---