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);
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
2013-09-05 02:00:51 +03:00
To compile, 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
2013-09-05 02:00:51 +03:00
* (optional) Qt 5, widget and network modules
2009-06-27 15:56:21 +03:00
* the ffmpeg libraries (libavformat and libswscale). Their name could be libavformat-devel and libswscale-devel, or ffmpeg-libs-devel or similar names.
2013-10-26 00:45:14 +03:00
* boost c++ libraries v1.48+ (www.boost.org):
2011-02-28 17:14:26 +02:00
- program-options
2010-10-18 18:08:59 +03:00
- filesystem
- system
- thread
2013-10-26 00:45:14 +03:00
- locale
2009-05-08 07:20:23 +03:00
2012-05-02 18:27:19 +03:00
On Debian-based systems (e.g. Ubuntu) run:
2014-03-04 17:51:10 +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 libboost-locale-dev qtbase5-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:
2013-11-02 20:16:07 +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 boost-locale 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
2013-06-09 13:09:28 +03:00
svn co http://svn.code.sf.net/p/vcmi/code/trunk/
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
2013-09-05 02:00:51 +03:00
cmake ../src <any other options, see below>
Additional options that you may want to use:
To enable debugging: -DCMAKE_BUILD_TYPE=Debug
To enable launcher: -DENABLE_LAUNCHER=Yes
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
2013-09-05 02:00:51 +03:00
To install VCMI you can use "make install" command however generation of distribution-specific packages is usually a better idea. In most cases this can be achieved using tool called "checkinstall"
2011-02-28 17:14:26 +02:00
2013-09-05 02:00:51 +03:00
If you're compiling vcmi for development puposes, it's better to use links instead.
2012-12-20 16:57:29 +03:00
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
2013-09-05 02:00:51 +03:00
ln -s .../trunk/build/launcher/vcmilauncher
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