Added contributing guidelines (wip).

This commit is contained in:
Francois Best 2016-10-08 02:36:24 +02:00
parent 34b1b11ad0
commit 530e983dea
1 changed files with 20 additions and 0 deletions

20
CONTRIBUTING.md Normal file
View File

@ -0,0 +1,20 @@
## Requirements
Requirements to build and run the unit tests:
- CMake 2.8 or later
- GCC / Clang with C++11 support
## Setup
Pull Google Test / Google Mock subrepository:
```
$ git init submodules
```
Create build directory, run CMake, build and run unit tests:
```
$ mkdir build && cd build
$ cmake ..
$ make
$ ctest --verbose
```