Mercurial > cortex
view org/setup.org @ 488:21b9dcec8d71
incorporate appendix.
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Sat, 29 Mar 2014 20:33:35 -0400 |
parents | 2ffda8e9b2a5 |
children | 819968c8a391 |
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:15 #+name: checkout16 #+begin_src sh :results verbatim :exports both17 svn checkout http://jmonkeyengine.googlecode.com/svn/trunk/engine \18 /home/r/proj/jMonkeyEngine319 #+end_src20 #+results: checkout21 #+begin_example22 Checked out revision 9220.23 #+end_example25 Building jMonkeyEngine is easy enough:27 #+name: build28 #+begin_src sh :results verbatim :exports both29 cd /home/r/proj/jMonkeyEngine330 ant jar | tail -n 231 #+end_src33 #+results: build34 #+begin_example35 BUILD SUCCESSFUL36 Total time: 2 seconds37 #+end_example40 Also build the javadoc:42 #+name: javadoc43 #+begin_src sh :results verbatim :exports both44 cd /home/r/proj/jMonkeyEngine345 ant javadoc | tail -n 246 #+end_src48 #+results: javadoc49 #+begin_example50 BUILD SUCCESSFUL51 Total time: 13 seconds52 #+end_example55 The java classpath should have all the jars from the jMonkeyEngine56 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