⇤ ← Revision 1 as of 2014-04-25 14:54:57
Size: 967
Comment:
|
Size: 966
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 27: | Line 27: |
After that, check that the following files exist (just like for step A2 above): | '''Step 4:''' Check that the following files exist: |
Line 35: | Line 35: |
If the library is still not found by the compiler, you can run: | '''(optional) Step 5:''' If the library is (still) not found by the compiler, you can run: |
Installing the Google C++ Testing Framework (gtest)
Installing gtest manually
Step 1: Download the latest (major) version from http://code.google.com/p/googletest, for example:
wget http://googletest.googlecode.com/files/gtest-1.7.0.zip
Step 2: Unpack the archive, change to the corresponding directory and build the code from its source:
unzip gtest-1.7.0.zip cd gtest-1.7.0 ./configure make
Step 3: Install the files, that is, copy them to the proper systems directories (you need to be root or have sudo rights for that):
sudo cp -a include/gtest /usr/local/include sudo cp -a lib/.libs/* /usr/local/lib
Step 4: Check that the following files exist:
/usr/local/include/gtest/gtest.h /usr/local/lib/libgtest.a /usr/local/lib/libgtest.so
(optional) Step 5: If the library is (still) not found by the compiler, you can run:
sudo ldconfig