2012-05-02 18:27:19 +03:00
This readme covers VCMI compilation on Unix-like systems.
2012-04-06 19:04:41 +03:00
2012-06-27 23:44:01 +03:00
To run the game you will need:
1) Heroes 3 data files (SoD or Complete editions);
2) Unofficial WoG addon
2012-10-02 17:22:58 +03:00
2) VCMI data pack (http://download.vcmi.eu/core.zip)
2012-12-20 16:57:29 +03:00
All of them can be installed manually or using vcmibuilder script
2009-05-08 07:20:23 +03:00
2012-06-27 23:44:01 +03:00
For complete installation instructions see VCMI wiki:
http://wiki.vcmi.eu/index.php?title=Installation_on_Linux#Preparing_data
2009-05-08 07:20:23 +03:00
2012-05-02 18:27:19 +03:00
I. Prerequisites
2009-05-08 07:20:23 +03:00
To compile, at least the following packages (and their development counterparts) are needed to build:
2012-10-02 17:22:58 +03:00
* libstdc++ devel
* CMake build system
2009-06-27 15:56:21 +03:00
* SDL and SDL-devel
* SDL_mixer and SDL_mixer-devel
* SDL_image and SDL_image-devel
* SDL_ttf and SDL_ttf-devel
* zlib and zlib-devel
* the ffmpeg libraries (libavformat and libswscale). Their name could be libavformat-devel and libswscale-devel, or ffmpeg-libs-devel or similar names.
2012-05-02 18:27:19 +03:00
* boost c++ libraries v1.44+ (www.boost.org):
2011-02-28 17:14:26 +02:00
- program-options
2010-10-18 18:08:59 +03:00
- filesystem
- system
- thread
2009-05-08 07:20:23 +03:00
2012-05-02 18:27:19 +03:00
On Debian-based systems (e.g. Ubuntu) run:
2012-10-02 17:22:58 +03:00
sudo apt-get install cmake g++ libsdl1.2debian libsdl-image1.2-dev libsdl-ttf2.0-dev libsdl-mixer1.2-dev zlib1g-dev libavformat-dev libswscale-dev libboost-dev libboost-filesystem-dev libboost-system-dev libboost-thread-dev libboost-program-options-dev
2009-08-15 05:23:04 +03:00
2012-06-11 21:45:57 +03:00
On RPM-based distributions (e.g. Fedora) run:
2012-10-02 17:22:58 +03:00
sudo yum install cmake gcc-c++ SDL-devel SDL_image-devel SDL_ttf-devel SDL_mixer-devel boost boost-devel boost-filesystem boost-system boost-thread boost-program-options zlib-devel ffmpeg-devel ffmpeg-libs
2012-04-06 19:04:41 +03:00
2012-05-02 18:27:19 +03:00
II. Getting the sources
VCMI is still in development. We recommend the following initial directory structure:
trunk
trunk/src -> contains sources and is under SVN control
trunk/build -> contains build output, makefiles, object files,...
You can get latest sources with subversion:
cd trunk
svn co https://vcmi.svn.sourceforge.net/svnroot/vcmi/trunk src
2012-04-06 19:04:41 +03:00
2012-05-02 18:27:19 +03:00
III. Compilation
2012-04-06 19:04:41 +03:00
2012-05-02 18:27:19 +03:00
Run configure:
2012-10-22 19:32:27 +03:00
mkdir build && cd build
cmake ../src -DCMAKE_BUILD_TYPE=Debug (to enable debugging)
2012-04-21 13:26:15 +03:00
Notice:
The ../src/ is not a typo, it will place makefile scripts into the build dir
2012-10-02 17:22:58 +03:00
as the build dir is your working dir when calling CMake.
2009-05-16 20:15:21 +03:00
Then build vcmi:
2012-10-22 19:32:27 +03:00
make -j2 (j2 = compile with 2 cpu cores, you can specifiy any value)
2009-05-08 07:20:23 +03:00
That will generate vcmiclient, vcmiserver as well as 3 .so libraries.
2012-05-02 18:27:19 +03:00
III. Installing binaries
2009-10-04 05:02:45 +03:00
2012-12-20 16:57:29 +03:00
To install VCMI type (as root):
2012-02-16 20:10:58 +03:00
make install
2011-02-28 17:14:26 +02:00
2012-12-20 16:57:29 +03:00
For development puposes, it's better to use links instead.
Go to /BIN_PATH/, and type:
2009-05-08 07:20:23 +03:00
2012-10-02 17:22:58 +03:00
ln -s .../trunk/build/client/vcmiclient
ln -s .../trunk/build/server/vcmiserver
2012-04-06 19:04:41 +03:00
Go to /LIB_PATH/vcmi, and type:
2012-10-02 17:22:58 +03:00
ln -s .../trunk/build/lib/libvcmi.so libvcmi.so
2012-04-06 19:04:41 +03:00
Go to /LIB_PATH/vcmi/AI, and type:
2012-10-02 17:22:58 +03:00
ln -s .../trunk/build/AI/VCAI/VCAI.so
ln -s .../trunk/build/AI/StupidAI/StupidAI.so
ln -s .../trunk/build/AI/BattleAI/BattleAI.so
2009-05-08 07:20:23 +03:00
2012-04-06 19:04:41 +03:00
Go to /DATA_PATH/vcmi, and type:
2012-10-02 17:22:58 +03:00
ln -s .../trunk/source/config
2012-12-20 16:57:29 +03:00
ln -s .../trunk/source/Mods
2011-02-28 17:14:26 +02:00