https://github.com/inflagames/ogre-docker
Docker container for OGRE
https://github.com/inflagames/ogre-docker
Last synced: 4 months ago
JSON representation
Docker container for OGRE
- Host: GitHub
- URL: https://github.com/inflagames/ogre-docker
- Owner: inflagames
- License: apache-2.0
- Created: 2021-11-04T22:53:52.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-03-04T20:21:06.000Z (over 2 years ago)
- Last Synced: 2025-03-02T06:27:35.554Z (over 1 year ago)
- Language: Shell
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Ogre3d docker
Docker container with basic dependencies and capabilities to build an Ogre3d project in Ubuntu 22.04.
**Tools Available**
- Ogre3d: v14.2.0
- CMake: v3.28.1
- Bullet (physics): 3.25
> Note: CMake v3.28.1 is configured in the docker image by default.
## Build my project
To build your project, run the next command on the root directory of your project.
```
docker run -v .:/app -w /app ggjnez92/ogre-ubuntu22.04:14.2.0 sh -c "mkdir build && cd build && cmake .. && make"
```
> Note: next example only build the project and generate binary using cmake configuration of the project.
> Any needed dependency, should be installed/configurated in the docker image to be used.
## License
[Apache 2.0](./LICENSE.md)
## [DockerHub integration](./DOCKER.md)
## Contributions
All contributions are welcome