Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/bast/cmake-example

Example project which demonstrates various CMake features.
https://github.com/bast/cmake-example

cmake

Last synced: 29 days ago
JSON representation

Example project which demonstrates various CMake features.

Awesome Lists containing this project

README

        

[![License](https://img.shields.io/badge/license-%20BSD--3-blue.svg)](../master/LICENSE)

# CMake example

Example project which demonstrates various CMake features.

- [CDash testing dashboard](http://my.cdash.org/index.php?project=cmake-example) (probably empty but you can submit your test result to it)

## How to build this demo

```
cmake -H. -Bbuild -DCMAKE_INSTALL_PREFIX:PATH=/tmp/foo
cd build
cmake --build .
ctest
cmake --build . --target install
```