Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

During a build with CMake there are three different directories involved: The source dir, the build dir and the install dir.


SourceContains the software's source code. This is where a source tarball should be extracted to./tmp/src/sw-package
BuildConfiguration and compiler outputs are generated here, including libraries and executables./tmp/build/sw-package
InstallWhere the software will actually be used from. Installation to this directory is the final stage./usr/local


Of these, the source and build directories can be anywhere on the system. The installation directory is usually left at its default, which is /usr/local. Installing software here ensures that it is automatically available to users. It is possible to specify a different installation directory by adding -DCMAKE_INSTALL_PREFIX=/path/to/install/dir to the CMake command line.

...

Here is an example set of commands to set up and build a software package using default settings. More detail for a customised build is given below.

# unpack the source tarball into a temporary directory
mkdir -p /tmp/src
cd /tmp/src
tar xzvf software-version-Source.tar.gz
 
# configure and build in a separate directory
mkdir -p /tmp/build
cd /tmp/build
cmake /tmp/src/software-version-Source
make

On a machine with multiple cores, compilation will be faster by specifying the number of cores to be used simultaneously for the build, for example:

make -j8

If the make command fails, you can get more output by typing:

make VERBOSE=1

If the build is successful, you can install the software:

make install

General CMake options

Various options can be passed to the CMake command. The following table gives an overview of some of the general options that can be used. Options are passed to the cmake command by prefixing them with -D, for example -DCMAKE_INSTALL_PREFIX=/path/to/dir.

CMAKE_INSTALL_PREFIX
where to install the software/usr/local
CMAKE_BUILD_TYPE

to select the type of compilation:

  • Debug
  • RelWithDebInfo
  • Release
  • Production
RelWithDebInfo
(release with debug info)
CMAKE_CXX_FLAGS
 Additional flags to pass to the C++ compiler 
CMAKE_C_FLAGS
Additional flags to pass to the C compiler 

The C and C++ compilers are chosen by CMake. This can be overwritten by setting the environment variables CC and CXX, before the call to cmake, to set the preferred compiler. Further the variable CMAKE_CXX_FLAGS can be used to set compiler flags for optimisation or debugging. For example, using CMAKE_CXX_FLAGS="-O2 -mtune=native" sets options for better optimisation. 

...

If CMake fails to configure your project, run with debug logging first:

cmake -DECBUILD_LOG_LEVEL=DEBUG [...] /path/to/source

This will output lots of diagnostic information (in blue) on discovery of dependencies and much more.

...

The following table lists the dependencies Metview CodesUI requires to be built from source. Please note, if you install these package from source you also might have to install the respective "-devel" packages.

Compilers
C++http://gcc.gnu.org/ 
Utilities

make

http://www.gnu.org/software/make/ 

Third party packages (best installed through system package manager)

Qthttp://www.qt.io/

minimum version 5.0.0 of Qt is required

bashhttps://www.gnu.org/software/bash/ 
ECMWF libraries
ecCodesecCodesminimum version 2.6.0. of ecCodes is required

CMake options used in CodesUI

CMake options are passed to the cmake command by prefixing them with -D, for example -DENABLE_QT_DEBUG=ON.

CMake option

Description

Default

ENABLE_QT_DEBUGoutputs additional log messages from Qt-based modulesOFF
Path options - only required when support libraries are not installed in default locations
CMake OptionDescriptionNotes
ECCODES_PATHpath to where ecCodes has been installed 
CMAKE_PREFIX_PATH

might be required if the Qt5 libraries are not found by default. Then they it can be specified like this: -DCMAKE_PREFIX_PATH=/path/to/qt5/