diff options
author | Roger Leigh <rleigh@debian.org> | 2013-09-07 23:21:56 +0100 |
---|---|---|
committer | Roger Leigh <rleigh@debian.org> | 2013-09-08 18:17:29 +0100 |
commit | fdc12c1ea033c7e93cb35a7665df58898f62a997 (patch) | |
tree | 6683c6d54a938b8c7b1e67b541b7c36f711f7d4d /README | |
parent | a17bdde2ad0fb7b3c5e1d8dc9da538101944658a (diff) | |
download | schroot-fdc12c1ea033c7e93cb35a7665df58898f62a997.tar.gz |
README: Document gtest dependency
Diffstat (limited to 'README')
-rw-r--r-- | README | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -32,6 +32,20 @@ gettext (0.16 or greater) doxygen po4a (>=0.40) +To run the unit tests, you will optionally need: +cmake +cppunit +gtest + +configure with GTEST_ROOT=/path/to/libgtest (it will be added as a +linker -L option). On Debian systems, which don't provide a +precompiled libgtest, build a version for the build with, for +example: + mkdir gtest + cd gtest; \ + CXX="g++ -std=c++11" cmake /usr/src/gtest ; \ + make VERBOSE=1 + ./configure CXX="g++ -std=c++11" GTEST_ROOT="$(pwd)/gtest" Translation ----------- |