I have a very simple C++ library (one header file, one .cpp file). I want to write unit tests for this project using the Google C++ Testing Framework.

Here is the directory structure:

~/project1
 |
 |-- project1.cpp
 |-- project1.h
 |-- project1_unittests.cpp
 \-- CMakeLists.txt

I do not plan to write my own main() function. I want to link with gtest_main as mentioned in the primer. What should CMakeLists.txt contain?

link|improve this question

feedback

1 Answer

up vote 10 down vote accepted

Enable CMake's built-in testing subsystem:

# For make-based builds, defines make target named test.
# For Visual Studio builds, defines Visual Studio project named RUN_TESTS.
enable_testing()

Compile an executable that will run your unit tests and link it with gtest and gtest_main:

add_executable(runUnitTests
    project1_unittests.cpp
)
target_link_libraries(runUnitTests gtest gtest_main)

Add a test which runs this executable:

add_test(
    NAME runUnitTests
    COMMAND runUnitTests
)
link|improve this answer
Thank you very much. This helped a lot. I had to link with both gtest, gtest_main and pthread. I also had to specify absolute paths for libgtest.a and libgtest_main.a; is there a better way to add these static libraries to the linker search path? – Agnel Kurian May 5 '11 at 19:19
Got it! I set and exported GTEST_ROOT in bash and then include_directories($ENV{GTEST_ROOT}/include) with link_directories($ENV{GTEST_ROOT}). – Agnel Kurian May 5 '11 at 19:36
Or you could just say cmake -DGTEST_ROOT=~/path/to/googletestroot .. – Robert Massaioli Mar 7 at 10:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.