Skip to content

Instantly share code, notes, and snippets.

@ysonggit
Forked from dlime/CMakeLists.txt
Created April 3, 2020 17:19
Show Gist options
  • Save ysonggit/f77fe6a919bbdb95c6744a9aa64cc6b9 to your computer and use it in GitHub Desktop.
Save ysonggit/f77fe6a919bbdb95c6744a9aa64cc6b9 to your computer and use it in GitHub Desktop.
Install Google Test and Google Mock on Ubuntu
cd ~
git clone https://github.com/google/googletest.git
cd googletest
mkdir build && cd build
cmake .. -DBUILD_SHARED_LIBS=ON -DINSTALL_GTEST=ON -DCMAKE_INSTALL_PREFIX:PATH=/usr
make -j8
sudo make install
sudo ldconfig
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment