summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernd Wachter <bwachter-tmw@lart.info>2010-12-15 21:27:58 +0200
committerBernd Wachter <bwachter-tmw@lart.info>2010-12-15 21:27:58 +0200
commit0b9665dfd783346df1c83e5db015604766963448 (patch)
tree5b5ad5108b600b85c3d730562edf3a3872ce0736
parent550a4b4873cb2a1618d10af2fd738e0b3e77d14f (diff)
downloadmana-client-0b9665dfd783346df1c83e5db015604766963448.tar.gz
mana-client-0b9665dfd783346df1c83e5db015604766963448.tar.bz2
mana-client-0b9665dfd783346df1c83e5db015604766963448.tar.xz
mana-client-0b9665dfd783346df1c83e5db015604766963448.zip
Update INSTALL to mention CMake instead of auto*
-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
========