I have a project where I have googletest in a sub-directory called Tests/GTest and I want to put google benchmark in a parallel sub-directory called Tests/GBenchmark (and probably google mock in Tests/GMock). That seems to be the corporate coding convention here. However, I don't know how to put a directive in CMakeLists.txt that explains to google benchmark where it will find googletest.
I have tried adding various versions of "../GTest" in the HandleGTest Hints section, but that hasn't helped. I'm a little closer by adding symbolic links, but that seems like a hack to me.