summaryrefslogtreecommitdiff
path: root/INSTALL
diff options
context:
space:
mode:
authorThorbjørn Lindeijer <thorbjorn.lindeijer@nokia.com>2010-12-15 21:20:27 +0100
committerThorbjørn Lindeijer <thorbjorn.lindeijer@nokia.com>2010-12-15 21:20:27 +0100
commite78ed334abc80578346dbef8a8b995c99dcfee7b (patch)
tree309c015c208ca2a57906df53741750ba90d48ad4 /INSTALL
parent580bf0a92367c08d10344784843b77cf7fb73d13 (diff)
parented5b9c52d7e469f0966c19ad9876b70aa8ac3737 (diff)
downloadmana-e78ed334abc80578346dbef8a8b995c99dcfee7b.tar.gz
mana-e78ed334abc80578346dbef8a8b995c99dcfee7b.tar.bz2
mana-e78ed334abc80578346dbef8a8b995c99dcfee7b.tar.xz
mana-e78ed334abc80578346dbef8a8b995c99dcfee7b.zip
Merge branch '0.5'
Diffstat (limited to 'INSTALL')
-rw-r--r--INSTALL18
1 files changed, 8 insertions, 10 deletions
diff --git a/INSTALL b/INSTALL
index 46836c21..16a5b8f2 100644
--- a/INSTALL
+++ b/INSTALL
@@ -31,8 +31,7 @@ and some libraries. The required libraries are:
If you've cloned the Git repository, you will also need these tools to compile:
-* GNU automake 1.9 http://www.gnu.org/software/automake/
-* GNU autoconf http://www.gnu.org/software/autoconf/
+* CMake >= 2.6 http://www.cmake.org/
* GNU gettext http://www.gnu.org/software/gettext/
* CVS http://www.nongnu.org/cvs/ (needed to run autopoint)
@@ -49,24 +48,23 @@ you to figure this out.
================================
1) Go to the directory you have extracted the source to.
-2) If you've cloned the Git repository, run "autoreconf -i" to generate
- configure and install any missing auxiliary files.
-3) Run "./configure"
-4) Run "make"
-5) Run "make install" as root
+2) Run "cmake ."
+3) Run "make"
+4) Run "make install" as root
It should have installed Mana on your system now, and you can run it
with "mana". By default all files are installed to /usr/local, you can pass a
-different prefix to configure as usual.
+different prefix to cmake with -D CMAKE_INSTALL_PREFIX=/path/to/prefix
NOTE: It is possible to compile Mana without support for OpenGL rendering.
- To do this perform step 3 as follows:
+ To do this perform step 2 as follows:
- ./configure --without-opengl
+ cmake -DWITH_OPENGL=OFF .
Rebuild the executable from scratch using "make clean" and then "make".
+For additional CMake related hints please read README.cmake
3. Notes
========