Reputation: 11
I am trying to install GTest
using CMake
on MacOS
. I am getting the following error:
cmake -G "Makefiles" ..
Error: CMake Error: Could not create named generator Makefiles
Upvotes: 1
Views: 223
Reputation:
try cmake -G 'Unix Makefiles' ..
see http://www.cmake.org/cmake/help/v2.8.10/cmake.html#section_Generators
Upvotes: 1