comparison org/setup.org @ 318:2ffda8e9b2a5

update setup.org to reflect ned jMonkeyEngine version.
author Robert McIntyre <rlm@mit.edu>
date Tue, 28 Feb 2012 14:13:56 -0600
parents 1381a6ebd08b
children 819968c8a391
comparison
equal deleted inserted replaced
317:bb3f8a4af87f 318:2ffda8e9b2a5
9 9
10 * Setup 10 * Setup
11 11
12 First, I checked out the source to jMonkeyEngine: 12 First, I checked out the source to jMonkeyEngine:
13 13
14
14 #+name: checkout 15 #+name: checkout
15 #+begin_src sh :results verbatim 16 #+begin_src sh :results verbatim :exports both
16 svn checkout http://jmonkeyengine.googlecode.com/svn/trunk/engine \ 17 svn checkout http://jmonkeyengine.googlecode.com/svn/trunk/engine \
17 /home/r/proj/jMonkeyEngine3 18 /home/r/proj/jMonkeyEngine3
18 #+end_src 19 #+end_src
19
20 #+results: checkout 20 #+results: checkout
21 : Checked out revision 7975. 21 #+begin_example
22 22 Checked out revision 9220.
23 #+end_example
23 24
24 Building jMonkeyEngine is easy enough: 25 Building jMonkeyEngine is easy enough:
25 26
26 #+name: build 27 #+name: build
27 #+begin_src sh :results verbatim 28 #+begin_src sh :results verbatim :exports both
28 cd /home/r/proj/jMonkeyEngine3 29 cd /home/r/proj/jMonkeyEngine3
29 ant jar | tail -n 2 30 ant jar | tail -n 2
30 #+end_src 31 #+end_src
31 32
32 #+results: build 33 #+results: build
33 : BUILD SUCCESSFUL 34 #+begin_example
34 : Total time: 5 seconds 35 BUILD SUCCESSFUL
36 Total time: 2 seconds
37 #+end_example
35 38
36 39
37 Also build the javadoc: 40 Also build the javadoc:
38 41
39 #+name: javadoc 42 #+name: javadoc
40 #+begin_src sh :results verbatim 43 #+begin_src sh :results verbatim :exports both
41 cd /home/r/proj/jMonkeyEngine3 44 cd /home/r/proj/jMonkeyEngine3
42 ant javadoc | tail -n 2 45 ant javadoc | tail -n 2
43 #+end_src 46 #+end_src
44 47
45 #+results: javadoc 48 #+results: javadoc
46 : BUILD SUCCESSFUL 49 #+begin_example
47 : Total time: 10 seconds 50 BUILD SUCCESSFUL
51 Total time: 13 seconds
52 #+end_example
48 53
49 54
50 The java classpath should have all the jars from the jMonkeyEngine 55 The java classpath should have all the jars from the jMonkeyEngine
51 directory. 56 directory.
52 57
53 For example, here is the file I use to run my REPL for clojure. 58 For example, here is the file I use to run my REPL for clojure.
54 59
55 #+include: "/home/r/bin/swank-all" src sh :exports code 60 #+include: "/home/r/bin/swank-all" src perl :exports code
56 61
57 62
58 63