{"id":13732420,"url":"https://github.com/mpusz/conan-irrlicht","last_synced_at":"2026-04-25T02:36:59.739Z","repository":{"id":139724704,"uuid":"175647995","full_name":"mpusz/conan-irrlicht","owner":"mpusz","description":"Conan recipe for Irrlicht library","archived":false,"fork":false,"pushed_at":"2023-03-17T12:05:07.000Z","size":63,"stargazers_count":1,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-12-25T14:55:54.542Z","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":"2019-03-14T15:19:57.000Z","updated_at":"2023-03-11T23:32:40.000Z","dependencies_parsed_at":"2023-04-19T06:45:40.437Z","dependency_job_id":null,"html_url":"https://github.com/mpusz/conan-irrlicht","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mpusz/conan-irrlicht","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mpusz%2Fconan-irrlicht","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mpusz%2Fconan-irrlicht/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mpusz%2Fconan-irrlicht/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mpusz%2Fconan-irrlicht/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mpusz","download_url":"https://codeload.github.com/mpusz/conan-irrlicht/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mpusz%2Fconan-irrlicht/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32248178,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-24T13:21:15.438Z","status":"online","status_checked_at":"2026-04-25T02:00:06.260Z","response_time":59,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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.943Z","updated_at":"2026-04-25T02:36:59.698Z","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-irrlicht/master/LICENSE)\n[![Conan CI](https://img.shields.io/github/actions/workflow/status/mpusz/units/ci-conan.yml?branch=master)](https://github.com/mpusz/units/actions?query=workflow%3A%22Conan%20CI%22+branch%3Amaster)\n[![Conan testing](https://img.shields.io/badge/mpusz.jfrog.io-1.0.0%3Atesting-blue)](https://mpusz.jfrog.io/ui/packages/conan:%2F%2Firrlicht/1.0.0)\n\n# conan-irrlicht\n\n[conan-mpusz](https://bintray.com/mpusz/conan-mpusz) package for [Irrlicht](http://irrlicht.sourceforge.net/) library.\n\nThe package generated with this **conanfile** can be found at [conan-mpusz](https://bintray.com/mpusz/conan-mpusz/irrlicht%3Ampusz).\n\n`conan` client can be downloaded from [Conan.io](https://conan.io).\n\n## Use the package\n\n### Add the remote\n\nTo add [conan-mpusz](https://bintray.com/mpusz/conan-mpusz) remote to your\nlocal `conan` instance run:\n\n```bash\n$ conan remote add conan-mpusz https://api.bintray.com/conan/mpusz/conan-mpusz\n```\n\n### Basic setup\n\n```bash\n$ conan install irrlicht/1.8.4@mpusz/stable -pr \u003cyour_conan_profile\u003e -b=outdated\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]\nirrlicht/1.8.4@mpusz/stable\n\n[generators]\ncmake\n```\n\nor if you are using `conanfile.py` file add:\n\n```python\nrequires = \"irrlicht/1.8.4@mpusz/stable\"\n```\n\nComplete the installation of dependencies for your project by running:\n\n```bash\n$ mkdir build\n$ cd build\n$ conan install .. -b=outdated \u003cyour_profile_and_settings\u003e\n\u003c your typical build process\u003e\n```\n\nProject setup installs the library (and all its dependencies), and assuming you chose\n`cmake` as a generator, it generates `conanbuildinfo.cmake` file that defines variables\nto make CMake work and find all the dependencies in the Conan local cache.\n\n## Available Options\n\n| Option | Default | Values        | Description                         |\n|--------|---------|---------------|-------------------------------------|\n| shared | False   | [True, False] | Generates shared library            |\n| fPIC   | True    | [True, False] | Generates position-independent code |\n\n## Build package\n\n```bash\n$ conan create . \u003cuser\u003e/\u003cchannel\u003e \u003cyour_profile_and_settings\u003e\n```\n\n## Upload package to server\n\n```bash\n$ conan upload -r \u003cremote-name\u003e --all irrlicht/1.8.4@\u003cuser\u003e/\u003cchannel\u003e\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmpusz%2Fconan-irrlicht","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmpusz%2Fconan-irrlicht","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmpusz%2Fconan-irrlicht/lists"}