Ubuntu 에서 Google Test를 다음과 같이 쉽게 설치할 수 있다.
sudo apt-get install libgtest-dev
하지만, 시스템에는 소스코드만 설치 됨으로 사용자가 컴파일 하여 lib 폴더로 옮겨야 한다.
sudo apt-get install cmake # install cmake cd /usr/src/gtest sudo cmake CMakeLists.txt sudo make # copy or symlink libgtest.a and libgtest_main.a to your /usr/lib folder sudo cp *.a /usr/lib
Getting started with Google Test (GTest) on Ubuntu
Erik Smistad