https://github.com/tomasiser/docker-cinder
Docker image for building Cinder C++ applications
https://github.com/tomasiser/docker-cinder
Last synced: about 2 months ago
JSON representation
Docker image for building Cinder C++ applications
- Host: GitHub
- URL: https://github.com/tomasiser/docker-cinder
- Owner: tomasiser
- Created: 2018-08-11T10:06:03.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-10-25T13:18:47.000Z (over 7 years ago)
- Last Synced: 2025-01-28T18:49:23.137Z (over 1 year ago)
- Language: Dockerfile
- Size: 1.95 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# docker-cinder
Docker image for building Cinder C++ applications
## Issues?
If you have troubles building Cinder projects using this Docker image, it may be because of the Boost library.
When building Cinder, it may be necessary to use system Boost.
You can do it when building Cinder using `cmake` by setting `CINDER_BOOST_USE_SYSTEM` to true, e.g., the following way:
```
cmake -DCINDER_BOOST_USE_SYSTEM=1
```