Vault7: CIA Hacking Tools Revealed
Navigation: » Latest version
Owner: User #524297
Google Test
Google Unit Test Framework
Manually Installing Google Test Library on Linux/OS X
# unzip your archive into ${GTEST_DIR}
# build the code, requires installation of CMake
cd ${GTEST_DIR}
mkdir mybuild
cd mybuild
cmake -G"Unix Makefiles" ..
make
# the manual installation part, to make libraries available on your system in a sane place
sudo cp -r ../include/gtest /usr/local/include
sudo cp lib*.a /usr/local/lib