Mercurial > cortex
changeset 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 | bb3f8a4af87f |
children | b84701e4f6ae |
files | org/setup.org |
diffstat | 1 files changed, 16 insertions(+), 11 deletions(-) [+] |
line wrap: on
line diff
1.1 --- a/org/setup.org Tue Feb 28 14:04:21 2012 -0600 1.2 +++ b/org/setup.org Tue Feb 28 14:13:56 2012 -0600 1.3 @@ -11,40 +11,45 @@ 1.4 1.5 First, I checked out the source to jMonkeyEngine: 1.6 1.7 + 1.8 #+name: checkout 1.9 -#+begin_src sh :results verbatim 1.10 +#+begin_src sh :results verbatim :exports both 1.11 svn checkout http://jmonkeyengine.googlecode.com/svn/trunk/engine \ 1.12 /home/r/proj/jMonkeyEngine3 1.13 #+end_src 1.14 - 1.15 #+results: checkout 1.16 -: Checked out revision 7975. 1.17 - 1.18 +#+begin_example 1.19 +Checked out revision 9220. 1.20 +#+end_example 1.21 1.22 Building jMonkeyEngine is easy enough: 1.23 1.24 #+name: build 1.25 -#+begin_src sh :results verbatim 1.26 +#+begin_src sh :results verbatim :exports both 1.27 cd /home/r/proj/jMonkeyEngine3 1.28 ant jar | tail -n 2 1.29 #+end_src 1.30 1.31 #+results: build 1.32 -: BUILD SUCCESSFUL 1.33 -: Total time: 5 seconds 1.34 +#+begin_example 1.35 +BUILD SUCCESSFUL 1.36 +Total time: 2 seconds 1.37 +#+end_example 1.38 1.39 1.40 Also build the javadoc: 1.41 1.42 #+name: javadoc 1.43 -#+begin_src sh :results verbatim 1.44 +#+begin_src sh :results verbatim :exports both 1.45 cd /home/r/proj/jMonkeyEngine3 1.46 ant javadoc | tail -n 2 1.47 #+end_src 1.48 1.49 #+results: javadoc 1.50 -: BUILD SUCCESSFUL 1.51 -: Total time: 10 seconds 1.52 +#+begin_example 1.53 +BUILD SUCCESSFUL 1.54 +Total time: 13 seconds 1.55 +#+end_example 1.56 1.57 1.58 The java classpath should have all the jars from the jMonkeyEngine 1.59 @@ -52,7 +57,7 @@ 1.60 1.61 For example, here is the file I use to run my REPL for clojure. 1.62 1.63 -#+include: "/home/r/bin/swank-all" src sh :exports code 1.64 +#+include: "/home/r/bin/swank-all" src perl :exports code 1.65 1.66 1.67