view org/setup.org @ 571:819968c8a391

minor corrections.
author Robert McIntyre <rlm@mit.edu>
date Mon, 02 Mar 2015 10:04:16 -0800
parents 2ffda8e9b2a5
children
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:
15 #+name: checkout
16 #+begin_src sh :results verbatim :exports both
17 svn checkout http://jmonkeyengine.googlecode.com/svn/trunk/engine \
18 /home/r/proj/jMonkeyEngine3
19 #+end_src
20 #+results: checkout
21 #+begin_example
22 Checked out revision 9220.
23 #+end_example
25 Building jMonkeyEngine is easy enough:
27 #+name: build
28 #+begin_src sh :results verbatim :exports both
29 cd /home/r/proj/jMonkeyEngine3
30 ant jar | tail -n 2
31 #+end_src
33 #+results: build
34 #+begin_example
35 BUILD SUCCESSFUL
36 Total time: 2 seconds
37 #+end_example
40 Also build the javadoc:
42 #+name: javadoc
43 #+begin_src sh :results verbatim :exports both
44 cd /home/r/proj/jMonkeyEngine3
45 ant javadoc | tail -n 2
46 #+end_src
48 #+results: javadoc
49 #+begin_example
50 BUILD SUCCESSFUL
51 Total time: 13 seconds
52 #+end_example
55 The java classpath should have all the jars from the jMonkeyEngine
56 directory.
58 # For example, here is the file I use to run my REPL for clojure.
60 # #+include: "/home/r/bin/swank-all" src perl :exports code