Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I just downloaded googletest, generated its makefile with CMake and built it. Now, I need to use it in my testing project.

With CMake, I have been advised not pointing to gtest libraries directly (using include _directories or link_directories) but use find_package() instead.

The problem is, there is no install target for the gtest makefile generated. I cannot understand how find_package(GTest REQUIRED) could work without some kind of installation. Also, putting the gtest folder as a subfolder in my project is not possible.

Thanks for any help.

share|improve this question

1 Answer

up vote 21 down vote accepted

This is an unusual case; most projects specify install rules.

CMake's ExternalProject_Add module is maybe the best tool for this job. This allows you to download, configure and build gtest from within your project, and then link to the gtest libraries.

I've tested the following CMakeLists.txt on Visual Studio 10 - it might need adjusted for other platforms:

CMAKE_MINIMUM_REQUIRED(VERSION 2.8.7 FATAL_ERROR)
PROJECT(Test)

# Create main.cpp which uses gtest
FILE(WRITE src/main.cpp "#include \"gtest/gtest.h\"\n\n")
FILE(APPEND src/main.cpp "TEST(A, B) { SUCCEED(); }\n")
FILE(APPEND src/main.cpp "int main(int argc, char **argv) {\n")
FILE(APPEND src/main.cpp "  testing::InitGoogleTest(&argc, argv);\n")
FILE(APPEND src/main.cpp "  return RUN_ALL_TESTS();\n")
FILE(APPEND src/main.cpp "}\n")

# Enable ExternalProject CMake module
INCLUDE(ExternalProject)

# Set default ExternalProject root directory
SET_DIRECTORY_PROPERTIES(PROPERTIES EP_PREFIX ${CMAKE_BINARY_DIR}/ThirdParty)

# Add gtest
ExternalProject_Add(
    googletest
    SVN_REPOSITORY http://googletest.googlecode.com/svn/trunk/
    TIMEOUT 10
    # Force separate output paths for debug and release builds to allow easy
    # identification of correct lib in subsequent TARGET_LINK_LIBRARIES commands
    CMAKE_ARGS -DCMAKE_ARCHIVE_OUTPUT_DIRECTORY_DEBUG:PATH=DebugLibs
               -DCMAKE_ARCHIVE_OUTPUT_DIRECTORY_RELEASE:PATH=ReleaseLibs
               -Dgtest_force_shared_crt=ON
    # Disable install step
    INSTALL_COMMAND ""
    # Wrap download, configure and build steps in a script to log output
    LOG_DOWNLOAD ON
    LOG_CONFIGURE ON
    LOG_BUILD ON)

# Specify include dir
ExternalProject_Get_Property(googletest source_dir)
INCLUDE_DIRECTORIES(${source_dir}/include)

# Add test executable target
ADD_EXECUTABLE(MainTest ${PROJECT_SOURCE_DIR}/src/main.cpp)

# Create dependency of MainTest on googletest
ADD_DEPENDENCIES(MainTest googletest)

# Specify MainTest's link libraries
ExternalProject_Get_Property(googletest binary_dir)
TARGET_LINK_LIBRARIES(MainTest
                      debug ${binary_dir}/DebugLibs/${CMAKE_FIND_LIBRARY_PREFIXES}gtest${CMAKE_FIND_LIBRARY_SUFFIXES}
                      optimized ${binary_dir}/ReleaseLibs/${CMAKE_FIND_LIBRARY_PREFIXES}gtest${CMAKE_FIND_LIBRARY_SUFFIXES})

If you create this as CMakeLists.txt in an empty directory (say MyTest), then:

cd MyTest
mkdir build
cd build
cmake ..

This should create a basic main.cpp in MyTest/src and create a project file (MyTest/build/Test.sln on Windows)

When you build the project, it should download the gtest sources to MyTest/build/ThirdParty/src/googletest, and build them in MyTest/build/ThirdParty/src/googletest-build. You should then be able to run the MainTest target successfully.

share|improve this answer
1  
Seems complex to me. Is there no way to reference google test CMakeLists.txt file directly? Or should I add googletest library as a subdirectory instead? – Korchkidu Mar 14 '12 at 7:03
1  
I don't think it's much more complex than adding googletest as a subdirectory, but if you have the choice then sure - add googletest as a subdirectory of your source tree and pull it in via ADD_SUBDIRECTORY. (You did specify that this wasn't an option in your original question). – Fraser Mar 14 '12 at 10:31
Yes, indeed. I would like to use a better solution. But a subdirectory seems better and cleaner than the solution you provided...But I am only starting in CMake world...;) – Korchkidu Mar 14 '12 at 12:08
1  
I'd agree that it might be slightly simpler, but I don't think it's cleaner. With the ADD_SUBDIRECTORY option, you end up with third party source code in your own source tree, whereas the ExternalProject_Add dumps the third party code in your (disposable) build tree, leaving your source tree with only your own source code. It's up to you though - I wouldn't really strongly recommend one over the other. – Fraser Mar 14 '12 at 13:15
+1 for keeping the source code tree clean with your first solution. I will investigate both solutions and see which one is best for me. Thanks a lot for your great help! – Korchkidu Mar 14 '12 at 13:38
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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