{"id":13732418,"url":"https://github.com/mpusz/conan-google-benchmark","last_synced_at":"2025-06-26T18:32:37.363Z","repository":{"id":139724701,"uuid":"112957858","full_name":"mpusz/conan-google-benchmark","owner":"mpusz","description":"Conan recipe for Google Benchmark library","archived":false,"fork":false,"pushed_at":"2020-01-04T20:44:24.000Z","size":25,"stargazers_count":8,"open_issues_count":1,"forks_count":2,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-05-08T00:52:10.988Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mpusz.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2017-12-03T19:43:18.000Z","updated_at":"2022-01-17T09:39:29.000Z","dependencies_parsed_at":"2023-04-19T06:46:27.593Z","dependency_job_id":null,"html_url":"https://github.com/mpusz/conan-google-benchmark","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mpusz/conan-google-benchmark","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mpusz%2Fconan-google-benchmark","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mpusz%2Fconan-google-benchmark/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mpusz%2Fconan-google-benchmark/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mpusz%2Fconan-google-benchmark/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mpusz","download_url":"https://codeload.github.com/mpusz/conan-google-benchmark/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mpusz%2Fconan-google-benchmark/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262122963,"owners_count":23262508,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-03T02:01:55.918Z","updated_at":"2025-06-26T18:32:37.257Z","avatar_url":"https://github.com/mpusz.png","language":"Python","funding_links":[],"categories":["Tools"],"sub_categories":[],"readme":"[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg?maxAge=3600)](https://raw.githubusercontent.com/mpusz/conan-google-benchmark/master/LICENSE)\n[![Travis CI](https://img.shields.io/travis/com/mpusz/conan-google-benchmark/master.svg?label=Travis%20CI)](https://travis-ci.com/mpusz/conan-google-benchmark)\n[![AppVeyor](https://img.shields.io/appveyor/ci/mpusz/conan-google-benchmark/master.svg?label=AppVeyor)](https://ci.appveyor.com/project/mpusz/conan-google-benchmark)\n[![Download](https://api.bintray.com/packages/mpusz/conan-mpusz/google-benchmark%3Ampusz/images/download.svg)](https://bintray.com/mpusz/conan-mpusz/google-benchmark%3Ampusz/_latestVersion)\n\n# DEPRECATED\n\nPlease note that as Google Benchmark now has an official Conan support this repository should be considered\ndeprecated. Please download the latest google benchmark from: \u003chttps://bintray.com/conan/conan-center/benchmark%3A_\u003e.\n\n---\n\n# conan-google-benchmark\n\n[conan-mpusz](https://bintray.com/mpusz/conan-mpusz) package for [Google Benchmark](https://github.com/google/benchmark) library.\n\nThe package generated with this **conanfile** can be found at [conan-mpusz](https://bintray.com/mpusz/conan-mpusz/google-benchmark%3Ampusz).\n\n`conan` client can be downloaded from [Conan.io](https://conan.io).\n\n## Reuse the package\n\n### Add conan-mpusz remote\n\nTo add [conan-mpusz](https://bintray.com/mpusz/conan-mpusz) remote to your\nlocal `conan` instance run:\n\n```bash\nconan remote add conan-mpusz https://api.bintray.com/conan/mpusz/conan-mpusz\n```\n\n### Basic setup\n\n```\n$ conan install google-benchmark/1.4.1@mpusz/stable --build=missing\n```\n\n### Project setup\n\nIf you handle multiple dependencies in your project, it would be better\nto add a `conanfile.txt`\n\n```\n[requires]\ngoogle-benchmark/1.4.1@mpusz/stable\n\n[options]\n\n[generators]\ncmake_paths\n```\n\nor if you are using `conanfile.py` file add:\n\n```python\nrequires = \"google-benchmark/1.4.1@mpusz/stable\"\n```\n\nComplete the installation of requirements for your project running:\n\n```\nmkdir build\ncd build\nconan install .. --build=outdated \u003cyour_profile_and_settings\u003e\n\u003cyour typical build process\u003e\n```\n\nProject setup installs the library (and all its dependencies), and assuming you chose\n`cmake_paths` as a generator, it generates `conan_paths.cmake` file that defines variables\nto make CMake `find_package()` work and find all the dependencies in the Conan local cache.\n\n\n## Build package\n\n```\n$ conan create . \u003cuser\u003e/\u003cchannel\u003e \u003cyour_profile_and_settings\u003e\n```\n\n## Upload package to server\n\n```\n$ conan upload -r \u003cremote-name\u003e --all google-benchmark/1.4.1@\u003cuser\u003e/\u003cchannel\u003e\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmpusz%2Fconan-google-benchmark","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmpusz%2Fconan-google-benchmark","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmpusz%2Fconan-google-benchmark/lists"}