I'm using an open source library that comes with gtest in my own project. Since I am using gmock for my own library there seems to be problems with compiling gmock when including gtest from the other open source library.
Is there a way to not include a child directory from that library?
In the open source library's include directory there are two folders:
include/
gtest MRT
I only want to include the folder "MRT" (If I use include_directories { path_to_os_lib/include/MRT } compilation will fail because the library internally uses include statements like "#include "MRT/foo/bar.hpp" ")