view org/setup.org @ 66:1381a6ebd08b

updated org files to work with latest org changes
author Robert McIntyre <rlm@mit.edu>
date Wed, 07 Dec 2011 12:16:48 -0600
parents 183744c179e6
children 2ffda8e9b2a5
line wrap: on
line source
1 #+title: Setup jMonkeyEngine3
2 #+author: Robert McIntyre
3 #+email: rlm@mit.edu
4 #+description: Simulating senses for AI research using JMonkeyEngine3
5 #+keywords: JMonkeyEngine3, clojure, java, setup
6 #+SETUPFILE: ../../aurellem/org/setup.org
7 #+INCLUDE: ../../aurellem/org/level-0.org
8 #+babel: :mkdirp yes :noweb yes :exports both
10 * Setup
12 First, I checked out the source to jMonkeyEngine:
14 #+name: checkout
15 #+begin_src sh :results verbatim
16 svn checkout http://jmonkeyengine.googlecode.com/svn/trunk/engine \
17 /home/r/proj/jMonkeyEngine3
18 #+end_src
20 #+results: checkout
21 : Checked out revision 7975.
24 Building jMonkeyEngine is easy enough:
26 #+name: build
27 #+begin_src sh :results verbatim
28 cd /home/r/proj/jMonkeyEngine3
29 ant jar | tail -n 2
30 #+end_src
32 #+results: build
33 : BUILD SUCCESSFUL
34 : Total time: 5 seconds
37 Also build the javadoc:
39 #+name: javadoc
40 #+begin_src sh :results verbatim
41 cd /home/r/proj/jMonkeyEngine3
42 ant javadoc | tail -n 2
43 #+end_src
45 #+results: javadoc
46 : BUILD SUCCESSFUL
47 : Total time: 10 seconds
50 The java classpath should have all the jars from the jMonkeyEngine
51 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