Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/bast/cmake-example
- Owner: bast
- License: bsd-3-clause
- Created: 2014-11-30T13:36:32.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2021-02-04T18:28:58.000Z (almost 4 years ago)
- Last Synced: 2024-08-03T11:01:27.771Z (3 months ago)
- Topics: cmake
- Language: CMake
- Homepage:
- Size: 30.3 KB
- Stars: 142
- Watchers: 10
- Forks: 52
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```