Config Header Problem
I recently updated my installation of OpenVolumeMesh to the latest commit and then had trouble building a project that linked to it, getting this error: "/usr/local/include/OpenVolumeMesh/System/Deprecation.hh:3:10: fatal error: DeprecationConfig.hh: No such file or directory #include "DeprecationConfig.hh""
I tracked it down and the problem was that Deprecation.hh was looking for "DeprecationConfig.hh", however CMake installed that file in "Config/DeprecationConfig.hh".
Modifying the installed header so that /usr/local/include/OpenVolumeMesh/System/Deprecation.hh looks for the config file at "../Config/DeprecationConfig.hh" fixed the error.
I'm running Ubuntu 18.04 if that makes any difference.