
* Support for both in-source and out-of-source builds * Set library version to 0.12 to map Debian package * Add separate options to build tests, examples and documentation * Add pkgconfig lookup support (if installed with `make install`) * Add CMake lookup support (if isntalled with `make install`) * Add Google Test Source lookup * Add CTest support for running tests (use `make test` or `ctest -V`)
18 lines
411 B
CMake
18 lines
411 B
CMake
find_package(GTestSrc)
|
|
|
|
IF(GTESTSRC_FOUND)
|
|
enable_testing()
|
|
|
|
if (WIN32 AND (NOT CYGWIN) AND (NOT MINGW))
|
|
set(gtest_disable_pthreads ON)
|
|
endif()
|
|
|
|
add_subdirectory(${GTEST_SOURCE_DIR} ${CMAKE_BINARY_DIR}/googletest)
|
|
include_directories(${GTEST_INCLUDE_DIR})
|
|
|
|
set(TEST_LIBRARIES gtest gtest_main)
|
|
|
|
add_subdirectory(perftest)
|
|
add_subdirectory(unittest)
|
|
ENDIF(GTESTSRC_FOUND)
|