Willy Scheibel
Willy Scheibel
Thanks for your interest in this project. Within our cmake-init template, we currently examine alternative approaches to integrate googletest and googlemock. Our latest approach can be viewed in https://github.com/cginternals/cmake-init/pull/97.
Regarding Debian and Ubuntu deployment, we're learning new best practices and requirements every week. Usually, we deploy shared libraries. If a static library better fits your needs, we'll discuss it....
Thanks for pointing this out. I added a new branch with a proposed change to the interfaces and member variables.
Sounds reasonable. Do you have a preliminary implementation?
We'll have a look at it. It seems like we have to provide a groff-formatted manpage and install a gzipped version to the man directory of the current install prefix.
You're right, a fine-grained handling of states would be best. We actually had plans to create state-stacks from which you can push and pop that would compute the actual difference...
Maybe Qt added some new flags we have to enable since this version. We should investigate.
Thanks for reporting. It seems as if we need to update our condition when to add `pthread` to the list of linked libraries (cf. https://github.com/cginternals/glbinding/blob/master/cmake/CompileOptions.cmake#L157). What is the value of...
With your include of `GLFW/glfw3.h`, the glfw3 library tries to provide OpenGL symbols as well. You can tell glfw3 that this should nat happen using the compile-time definition `GLFW_INCLUDE_NONE`. We...
It seems like I missed your second question. The actual line of the compiler error would help to provide a minimal solution. However, introducing reinterpret casts should do the trick:...