Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/glemaitre/cmake-gtest-skeleton


https://github.com/glemaitre/cmake-gtest-skeleton

Last synced: 8 days ago
JSON representation

Awesome Lists containing this project

README

        

# CMake-skeleton

## Compilation

* Create a build folder:

`mkdir build`

* Move to the created folder:

`cd build`

* Create the `MakeFile` via cmake:

`cmake ../src`

* Compile the code to generate the executable:

`make` or `make -j n` where `n` is the number of cores to use for the compilation

* A folder bin will be created at the same level as the build directory.