https://github.com/ugnelis/conan-gtest-coverage-example
Conan.io package GTest with coverage implementation.
https://github.com/ugnelis/conan-gtest-coverage-example
conan conan-io coverage coveralls cpp googletest gtest travis-ci
Last synced: 3 months ago
JSON representation
Conan.io package GTest with coverage implementation.
- Host: GitHub
- URL: https://github.com/ugnelis/conan-gtest-coverage-example
- Owner: ugnelis
- License: mit
- Created: 2018-04-25T05:15:32.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-06-11T11:01:13.000Z (about 6 years ago)
- Last Synced: 2025-03-27T06:34:43.801Z (3 months ago)
- Topics: conan, conan-io, coverage, coveralls, cpp, googletest, gtest, travis-ci
- Language: Python
- Size: 18.6 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# conan-gtest-coverage-example
[](https://travis-ci.org/ugnelis/conan-gtest-coverage-example)
[](https://coveralls.io/github/ugnelis/conan-gtest-coverage-example?branch=master)Conan.io package GTest with coverage implementation.
## Projects
This `conan-gtest-coverage-example` consists of two Conan.io sub-projects:
* [hello-world](helloworld) - is a library which has GTests.
* [app](app) - is binary which uses `hello-world` library.## Usage
First of all, `hello-world` needs to be compiled:
```bash
$ cd helloworld
$ conan create . ugnelis/stable
```Then `app` binary can be built:
```bash
$ cd app
$ conan create . ugnelis/stable
```