diff options
author | Bernd Wachter <bwachter-tmw@lart.info> | 2010-12-15 21:27:58 +0200 |
---|---|---|
committer | Bernd Wachter <bwachter-tmw@lart.info> | 2010-12-15 21:27:58 +0200 |
commit | 0b9665dfd783346df1c83e5db015604766963448 (patch) | |
tree | 5b5ad5108b600b85c3d730562edf3a3872ce0736 /INSTALL | |
parent | 550a4b4873cb2a1618d10af2fd738e0b3e77d14f (diff) | |
download | mana-0b9665dfd783346df1c83e5db015604766963448.tar.gz mana-0b9665dfd783346df1c83e5db015604766963448.tar.bz2 mana-0b9665dfd783346df1c83e5db015604766963448.tar.xz mana-0b9665dfd783346df1c83e5db015604766963448.zip |
Update INSTALL to mention CMake instead of auto*
Diffstat (limited to 'INSTALL')
-rw-r--r-- | INSTALL | 18 |
1 files changed, 8 insertions, 10 deletions
@@ -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 ======== |