I want to use gmock (Google Mock) as a fake framework for a C ++ project in Xcode. Therefore, I need to compile gmock as gmock.framework . Unfortunately, the project does not come with a dedicated Xcode project (it has one gtest in it).
Creating a Framework project in Xcode and creating it with an error with multiple errors (mostly empty paths used in the headers look wrong).
So (and sorry for the general question), how to compile gmock as a Framework to be able to use it in other Xcode projects?
source share