I am try to install GoogleTest for testing a C++ project on macOS 10.12.
I have retrieved the latest source, release-1.8.0 and am having issues building the library. I have tried the following:
$ cd googletest-release-1.8.0
$ mkdir build
$ cd build
$ cmake ..
$ make
There are no errors, however the lib files don't appear to be created anywhere that I can find.
What am I doing wrong here? I don't know too much about CMake.