Harald Sitter wrote: > Random thought to make dependency problems more obvious: glue the git > sha into the cmake package version for frameworks (when built from > git) so it finds "5.65.0.abcd123" given us a lead on what is actually > available.
The git SHA is not going to work for this, because it is not monotonic. What you really want to know is whether you have something >= 5.65.0.abcd123, and having a 5.65.0.commithash version is not going to tell you that. Kevin Kofler