How to build VCMI (Linux)

From VCMI Project Wiki
Revision as of 16:09, 27 January 2013 by Beegee (talk | contribs) (Compiling VCMI)
Jump to: navigation, search

Compiling VCMI

Supported C++ compilers: GCC 4.5+, Clang 3.1+ There is a guide for compiling and running VCMI located in the SVN trunk root directory: README.linux

The last step in the above-mentioned compiling guide requires to create soft-links for convenient debugging and development in general. There is a bash script which does this step automatically for you. You have to enter the build path, specify the source path and select the usual library folder of the operating system. Then the script takes the work to create all those symbolic links. This is comfortable if you're working on different source folders(trunk, tag, branch) or build types(debug, release) and you want to switch from one build to the other. The link to the script is here: http://download.vcmi.eu/setBuildLinks

Setting up a development environment using QtCreator

QtCreator is the recommended IDE for VCMI development on linux distros. (It may be used on other operating systems as well) It has the following advantages compared to other IDEs:

  • Almost no manual configuration when used with CMake (Project configuration is read from CMake text files)
  • Fast parser/indexer, stable
  • Can use several compiler toolchains: GCC, Visual Studio, Clang
  • Doesn't pollute SVN with project files

You can download QtCreator from here: http://qt-project.org/downloads#qt-creator

Configuration

To open the project you have to click File -> Open file or project... -> Select /trunk/src/CMakeLists.txt.


For the first time and for every CMake project configuration change you have to execute CMake. This step can be done when opening the project for the first time or alternatively via the left bar -> Projects -> Build Settings -> Execute CMake. You have to specify CMake arguments and the build dir. CMake arguments can be the following:

-DDISABLE_ERM=ON -DCMAKE_BUILD_TYPE=Debug

The build dir should be set to sth. like /trunk/build for the debug build and /trunk/buildrel for the release build. For cleaning the build dir a command like "make clean" may be not enough. Better way is to delete the build dir, re-create it and re-execute CMake. Steps for cleaning can be configured in the Projects tab as well.

Debugging

There is a problem with QtCreator when debugging both vcmiclient and vcmiserver. If you debug the vcmiclient, start a game, attach the vcmiserver process to the gdb debugger(Debug > Start Debugging > Attach to Running External Application...) then breakpoints which are set for vcmiserver will be ignored. This looks like a bug, in any case it's not intuitively. Two workarounds are available luckily:

1) Run vcmiclient (no debug mode), then attach server process to the debugger

2) Open two instances of QtCreator and debug vcmiserver and vcmiclient separately(it works!)