How to build

Building Vanetza is accomplished by the CMake build system. Hence, CMake needs to be available on the build host.

Prerequisites

You need following tools and libraries on your system for compiling Vanetza:

If OpenSSL (1.0 or 1.1) or LibreSSL is available on your system, an alternative security backend implementation is compiled along with the Crypto++ based backend. See security::Backend and security::create_backend for more details.

Hint

If you are building on Ubuntu 16.04 or 18.04, please note that these Ubuntu releases ship outdated CMake versions unsuitable for Vanetza. Have a look at the Kitware APT Repository, which lists some of your options for installing an up-to-date CMake version.

Compilation

Following command line snippet demonstrates the build process using a generated Makefile. Other CMake generators and build directory setups can be used as well.

cd vanetza
mkdir build && cd build
cmake ..
make

Unit tests

Vanetza comes with many unit tests covering the most critical parts. When the CMake option BUILD_TESTS is enabled, the Google Test sources are downloaded by the build system automatically. The built test cases are standalone executables located in the tests subdirectory of your build directory. For running all test cases, I recommend to invoke ctest in your build directory.

Integrating Vanetza

Vanetza is primarily a library project intended for integration by other projects, e.g. V2X simulation tools such as Artery. Projects using CMake can integrate Vanetza most easily by calling find_package(Vanetza) and then refer to the imported Vanetza targets, such as Vanetza::vanetza.