Add images/icon buttons for CLIM
[gsharp.git] / INSTALL
blobc031c331cf237ebec894c3f60b0ae6f13f1089b8
1 ;;;; Using Quicklisp (recommended, see http://www.quicklisp.org):
3 ;;; type (ql:quickload "gsharp")
4 ;;; when installed, type (require :gsharp)
5 ;;; then (gsharp::gsharp)
7 ;;;; "Manual" installation:
9 ;;; Requirements
12 * A Common Lisp.  Known to work: SBCL 1.0.8
14 * Certain pieces of Lisp software:
16   ** McCLIM.  The "Orthodox New Year" release is needed, along with
17      *** spatial-trees;
19      *** at least one means of displaying graphics: CLX is
20          recommended, but the OpenMCL/Cocoa bridge or the gtkairo
21          backend are possibilities.
23   ** Flexichain.  ASDF-INSTALLable or from common-lisp.net CVS, the
24      flexichain project, flexichain module.
26   ** MIDI.  ASDF-INSTALLable; current home at
27      <http://doc.gold.ac.uk/isms/lisp/midi/>
29   Make sure ASDF knows how to find all of these projects.
32 ;;; Start the lisp system
34 ;;; Load the gsharp.asd file or make sure the directory in which it
35 ;;; lives is in the asdf:*central-registry* list of directories
37 (load "gsharp.asd")
39 ;;; Compile and load the system
41 (asdf:operate 'asdf:load-op :gsharp)
43 ;;; Run Gsharp
45 (gsharp::gsharp)