Software Engineering
Jacobs University, Spring Semester 2018
Prof. Dr. Peter Baumann
Empty repository
Leul Shiferaw [email protected]
Matius Chairani [email protected]
A CMakeLists.txt is available in the root folder, and compilation is done with CMake. CMake also needs to be installed in the system. Refer to stackexchange.com or google.com for instructions on how to install the framework.
For unit testing, Google Test is the framework of choice. Google Test needs to be installed in the system. Refer to stackexchange.com or google.com for instructions on how to install the framework.
Installation on a Mac: http://hack.limbicmedia.ca/installing-google-test/
From the project root directory
$ mkdir build
$ cd build
$ cmake CMakeLists.txt ..
$ make
$ cd test
$ ./gtest-bug
The commenting style adopts the Doxygen style comment blocks, which will allow an easier generation of the documentation file with Doxygen. More on Doxygen http://www.stack.nl/~dimitri/doxygen/index.html.