Mercurial > cortex
view org/setup.org @ 213:319963720179
fleshing out vision
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Thu, 09 Feb 2012 08:11:10 -0700 |
parents | 1381a6ebd08b |
children | 2ffda8e9b2a5 |
line wrap: on
line source
1 #+title: Setup jMonkeyEngine32 #+author: Robert McIntyre3 #+email: rlm@mit.edu4 #+description: Simulating senses for AI research using JMonkeyEngine35 #+keywords: JMonkeyEngine3, clojure, java, setup6 #+SETUPFILE: ../../aurellem/org/setup.org7 #+INCLUDE: ../../aurellem/org/level-0.org8 #+babel: :mkdirp yes :noweb yes :exports both10 * Setup12 First, I checked out the source to jMonkeyEngine:14 #+name: checkout15 #+begin_src sh :results verbatim16 svn checkout http://jmonkeyengine.googlecode.com/svn/trunk/engine \17 /home/r/proj/jMonkeyEngine318 #+end_src20 #+results: checkout21 : Checked out revision 7975.24 Building jMonkeyEngine is easy enough:26 #+name: build27 #+begin_src sh :results verbatim28 cd /home/r/proj/jMonkeyEngine329 ant jar | tail -n 230 #+end_src32 #+results: build33 : BUILD SUCCESSFUL34 : Total time: 5 seconds37 Also build the javadoc:39 #+name: javadoc40 #+begin_src sh :results verbatim41 cd /home/r/proj/jMonkeyEngine342 ant javadoc | tail -n 243 #+end_src45 #+results: javadoc46 : BUILD SUCCESSFUL47 : Total time: 10 seconds50 The java classpath should have all the jars from the jMonkeyEngine51 directory.53 For example, here is the file I use to run my REPL for clojure.55 #+include: "/home/r/bin/swank-all" src sh :exports code