An open API service indexing awesome lists of open source software.

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

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
```