summaryrefslogtreecommitdiff
path: root/README.cmake
diff options
context:
space:
mode:
authorJared Adams <jaxad0127@gmail.com>2009-10-24 11:39:32 -0600
committerJared Adams <jaxad0127@gmail.com>2009-10-24 11:40:27 -0600
commit6d2a44c985d5a841231ac64b05898c81dc98b379 (patch)
tree2812ed5748292344d3646629ff6e39d8c1457d14 /README.cmake
parentc3ac3fb3b95d0abcd2cbc51e8ff1f2498cc6841b (diff)
downloadmana-client-6d2a44c985d5a841231ac64b05898c81dc98b379.tar.gz
mana-client-6d2a44c985d5a841231ac64b05898c81dc98b379.tar.bz2
mana-client-6d2a44c985d5a841231ac64b05898c81dc98b379.tar.xz
mana-client-6d2a44c985d5a841231ac64b05898c81dc98b379.zip
More rebranding
Diffstat (limited to 'README.cmake')
-rw-r--r--README.cmake14
1 files changed, 7 insertions, 7 deletions
diff --git a/README.cmake b/README.cmake
index 5796a5c8..d703ecb9 100644
--- a/README.cmake
+++ b/README.cmake
@@ -1,5 +1,5 @@
This readme explains the most common parameters to CMake needed for
-building tmw.
+building mana.
Basic syntax
------------
@@ -25,13 +25,13 @@ How do I...
- Add additional include search directories?
CMAKE_INCLUDE_PATH=/include/path
-For example, to build tmw to install in /opt/tmw, with libraries in
-/build/tmw/lib, and SDL-headers in /build/tmw/include/SDL you'd use
+For example, to build mana to install in /opt/mana, with libraries in
+/build/mana/lib, and SDL-headers in /build/mana/include/SDL you'd use
the following command:
-cmake -D CMAKE_PREFIX_PATH=/build/tmw \
- -D CMAKE_INCLUDE_PATH=/build/tmw/include/SDL \
- -D CMAKE_INSTALL_PREFIX=/opt/tmw .
+cmake -D CMAKE_PREFIX_PATH=/build/mana \
+ -D CMAKE_INCLUDE_PATH=/build/mana/include/SDL \
+ -D CMAKE_INSTALL_PREFIX=/opt/mana .
Crosscompiling using CMake
@@ -48,7 +48,7 @@ SET(CMAKE_SYSTEM_NAME Windows)
SET(CMAKE_C_COMPILER i386-mingw32-gcc)
SET(CMAKE_CXX_COMPILER i386-mingw32-g++)
# here is the target environment located
-SET(CMAKE_FIND_ROOT_PATH /build/mingw32 /build/tmw-libs )
+SET(CMAKE_FIND_ROOT_PATH /build/mingw32 /build/mana-libs )
# adjust the default behaviour of the FIND_XXX() commands:
# search headers and libraries in the target environment, search
# programs in the host environment