From 156c12e360c7c2125cdfc7c7f3edefea7933c0c4 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Sun, 19 Jan 2014 09:39:45 -0700 Subject: [PATCH] Added readme file --- README.markdown | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 README.markdown diff --git a/README.markdown b/README.markdown new file mode 100644 index 00000000..a8717d6b --- /dev/null +++ b/README.markdown @@ -0,0 +1,35 @@ +# SWGNGE + +## Ubuntu Environment + + sudo apt-get install build-essential zlib1g-dev libpcre3-dev cmake libboost-dev libxml2-dev + +### Oracle Instant Client + +Follow this guide to get the oracle client set up. + +https://help.ubuntu.com/community/Oracle%20Instant%20Client + +### Oracle Java 7 + +Follow this guide to get oracle java 7 installed. + +https://help.ubuntu.com/community/Java + +### STLPort + + wget http://downloads.sourceforge.net/project/stlport/STLport/STLport-5.2.1/STLport-5.2.1.tar.bz2 + tar -xvjf STLport-5.2.1.tar.bz2 + cd STLport-5.2.1 + ./configure + sudo make install + +## Build code + + git clone git@bitbucket.org:apathyboy/swg-src.git -b cmake + mkdir swg-src/build + cd swg-src/build + cmake .. + make + +