2013-10-15 19:17:36 +04:00
|
|
|
#.rst:
|
|
|
|
# FindGTest
|
|
|
|
# ---------
|
|
|
|
#
|
2009-08-17 06:12:04 +04:00
|
|
|
# Locate the Google C++ Testing Framework.
|
|
|
|
#
|
2015-12-10 18:52:07 +03:00
|
|
|
# Imported targets
|
|
|
|
# ^^^^^^^^^^^^^^^^
|
2009-08-17 06:12:04 +04:00
|
|
|
#
|
2015-12-10 18:52:07 +03:00
|
|
|
# This module defines the following :prop_tgt:`IMPORTED` targets:
|
2013-10-15 19:17:36 +04:00
|
|
|
#
|
2015-12-10 18:52:07 +03:00
|
|
|
# ``GTest::GTest``
|
|
|
|
# The Google Test ``gtest`` library, if found; adds Thread::Thread
|
|
|
|
# automatically
|
|
|
|
# ``GTest::Main``
|
|
|
|
# The Google Test ``gtest_main`` library, if found
|
2013-10-15 19:17:36 +04:00
|
|
|
#
|
|
|
|
#
|
2015-12-10 18:52:07 +03:00
|
|
|
# Result variables
|
|
|
|
# ^^^^^^^^^^^^^^^^
|
2013-10-15 19:17:36 +04:00
|
|
|
#
|
2015-12-10 18:52:07 +03:00
|
|
|
# This module will set the following variables in your project:
|
2009-08-17 06:12:04 +04:00
|
|
|
#
|
2015-12-10 18:52:07 +03:00
|
|
|
# ``GTEST_FOUND``
|
|
|
|
# Found the Google Testing framework
|
|
|
|
# ``GTEST_INCLUDE_DIRS``
|
|
|
|
# the directory containing the Google Test headers
|
2009-08-17 06:12:04 +04:00
|
|
|
#
|
2015-12-10 18:52:07 +03:00
|
|
|
# The library variables below are set as normal variables. These
|
|
|
|
# contain debug/optimized keywords when a debugging library is found.
|
2009-08-17 06:12:04 +04:00
|
|
|
#
|
2015-12-10 18:52:07 +03:00
|
|
|
# ``GTEST_LIBRARIES``
|
|
|
|
# The Google Test ``gtest`` library; note it also requires linking
|
|
|
|
# with an appropriate thread library
|
|
|
|
# ``GTEST_MAIN_LIBRARIES``
|
|
|
|
# The Google Test ``gtest_main`` library
|
|
|
|
# ``GTEST_BOTH_LIBRARIES``
|
|
|
|
# Both ``gtest`` and ``gtest_main``
|
2013-10-15 19:17:36 +04:00
|
|
|
#
|
2015-12-10 18:52:07 +03:00
|
|
|
# Cache variables
|
|
|
|
# ^^^^^^^^^^^^^^^
|
2013-10-15 19:17:36 +04:00
|
|
|
#
|
2015-12-10 18:52:07 +03:00
|
|
|
# The following cache variables may also be set:
|
2013-10-15 19:17:36 +04:00
|
|
|
#
|
2015-12-10 18:52:07 +03:00
|
|
|
# ``GTEST_ROOT``
|
|
|
|
# The root directory of the Google Test installation (may also be
|
|
|
|
# set as an environment variable)
|
|
|
|
# ``GTEST_MSVC_SEARCH``
|
|
|
|
# If compiling with MSVC, this variable can be set to ``MD`` or
|
|
|
|
# ``MT`` (the default) to enable searching a GTest build tree
|
2009-10-01 09:12:40 +04:00
|
|
|
#
|
|
|
|
#
|
2015-12-10 18:52:07 +03:00
|
|
|
# Example usage
|
|
|
|
# ^^^^^^^^^^^^^
|
2009-10-01 09:12:40 +04:00
|
|
|
#
|
2013-10-15 19:17:36 +04:00
|
|
|
# ::
|
|
|
|
#
|
|
|
|
# enable_testing()
|
|
|
|
# find_package(GTest REQUIRED)
|
2009-10-01 09:12:40 +04:00
|
|
|
#
|
2013-10-15 19:17:36 +04:00
|
|
|
# add_executable(foo foo.cc)
|
2015-12-10 18:52:07 +03:00
|
|
|
# target_link_libraries(foo GTest::GTest GTest::Main)
|
2013-10-15 19:17:36 +04:00
|
|
|
#
|
|
|
|
# add_test(AllTestsInFoo foo)
|
|
|
|
#
|
|
|
|
#
|
2015-12-10 18:52:07 +03:00
|
|
|
# Deeper integration with CTest
|
|
|
|
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2013-10-15 19:17:36 +04:00
|
|
|
#
|
|
|
|
# If you would like each Google test to show up in CTest as a test you
|
2015-12-10 18:52:07 +03:00
|
|
|
# may use the following macro::
|
2013-10-15 19:17:36 +04:00
|
|
|
#
|
2015-12-10 18:52:07 +03:00
|
|
|
# GTEST_ADD_TESTS(executable extra_args files...)
|
2013-10-15 19:17:36 +04:00
|
|
|
#
|
2015-12-10 18:52:07 +03:00
|
|
|
# ``executable``
|
|
|
|
# the path to the test executable
|
|
|
|
# ``extra_args``
|
|
|
|
# a list of extra arguments to be passed to executable enclosed in
|
|
|
|
# quotes (or ``""`` for none)
|
|
|
|
# ``files...``
|
|
|
|
# a list of source files to search for tests and test fixtures. Or
|
|
|
|
# ``AUTO`` to find them from executable target
|
2013-10-15 19:17:36 +04:00
|
|
|
#
|
2015-12-10 18:52:07 +03:00
|
|
|
# However, note that this macro will slow down your tests by running
|
|
|
|
# an executable for each test and test fixture. You will also have to
|
|
|
|
# re-run CMake after adding or removing tests or test fixtures.
|
2013-10-15 19:17:36 +04:00
|
|
|
#
|
2015-12-10 18:52:07 +03:00
|
|
|
# Example usage::
|
2013-10-15 19:17:36 +04:00
|
|
|
#
|
|
|
|
# set(FooTestArgs --foo 1 --bar 2)
|
|
|
|
# add_executable(FooTest FooUnitTest.cc)
|
2014-02-26 16:47:38 +04:00
|
|
|
# GTEST_ADD_TESTS(FooTest "${FooTestArgs}" AUTO)
|
2009-08-17 06:12:04 +04:00
|
|
|
|
2009-09-28 19:45:50 +04:00
|
|
|
#=============================================================================
|
|
|
|
# Copyright 2009 Kitware, Inc.
|
|
|
|
# Copyright 2009 Philip Lowman <philip@yhbt.com>
|
2009-10-01 09:12:40 +04:00
|
|
|
# Copyright 2009 Daniel Blezek <blezek@gmail.com>
|
2009-08-17 06:12:04 +04:00
|
|
|
#
|
2009-09-28 19:45:50 +04:00
|
|
|
# Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
# see accompanying file Copyright.txt for details.
|
|
|
|
#
|
|
|
|
# This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
# See the License for more information.
|
|
|
|
#=============================================================================
|
2010-08-07 04:48:47 +04:00
|
|
|
# (To distribute this file outside of CMake, substitute the full
|
2009-09-28 19:45:50 +04:00
|
|
|
# License text for the above reference.)
|
2009-10-01 09:12:40 +04:00
|
|
|
#
|
|
|
|
# Thanks to Daniel Blezek <blezek@gmail.com> for the GTEST_ADD_TESTS code
|
2009-08-17 06:12:04 +04:00
|
|
|
|
2009-10-01 09:12:40 +04:00
|
|
|
function(GTEST_ADD_TESTS executable extra_args)
|
|
|
|
if(NOT ARGN)
|
|
|
|
message(FATAL_ERROR "Missing ARGN: Read the documentation for GTEST_ADD_TESTS")
|
|
|
|
endif()
|
2014-02-26 16:47:38 +04:00
|
|
|
if(ARGN STREQUAL "AUTO")
|
|
|
|
# obtain sources used for building that executable
|
|
|
|
get_property(ARGN TARGET ${executable} PROPERTY SOURCES)
|
|
|
|
endif()
|
2015-05-04 18:23:30 +03:00
|
|
|
set(gtest_case_name_regex ".*\\( *([A-Za-z_0-9]+) *, *([A-Za-z_0-9]+) *\\).*")
|
2014-04-16 21:15:59 +04:00
|
|
|
set(gtest_test_type_regex "(TYPED_TEST|TEST_?[FP]?)")
|
2009-10-01 09:12:40 +04:00
|
|
|
foreach(source ${ARGN})
|
|
|
|
file(READ "${source}" contents)
|
2015-05-04 18:23:30 +03:00
|
|
|
string(REGEX MATCHALL "${gtest_test_type_regex} *\\(([A-Za-z_0-9 ,]+)\\)" found_tests ${contents})
|
2009-10-01 09:12:40 +04:00
|
|
|
foreach(hit ${found_tests})
|
2014-04-16 21:15:59 +04:00
|
|
|
string(REGEX MATCH "${gtest_test_type_regex}" test_type ${hit})
|
2014-04-01 17:21:23 +04:00
|
|
|
|
2014-04-16 21:15:59 +04:00
|
|
|
# Parameterized tests have a different signature for the filter
|
2015-11-18 18:36:41 +03:00
|
|
|
if("x${test_type}" STREQUAL "xTEST_P")
|
2014-04-16 21:15:59 +04:00
|
|
|
string(REGEX REPLACE ${gtest_case_name_regex} "*/\\1.\\2/*" test_name ${hit})
|
2015-11-18 18:36:41 +03:00
|
|
|
elseif("x${test_type}" STREQUAL "xTEST_F" OR "x${test_type}" STREQUAL "xTEST")
|
2014-04-16 21:15:59 +04:00
|
|
|
string(REGEX REPLACE ${gtest_case_name_regex} "\\1.\\2" test_name ${hit})
|
2015-11-18 18:36:41 +03:00
|
|
|
elseif("x${test_type}" STREQUAL "xTYPED_TEST")
|
2014-04-16 21:15:59 +04:00
|
|
|
string(REGEX REPLACE ${gtest_case_name_regex} "\\1/*.\\2" test_name ${hit})
|
|
|
|
else()
|
|
|
|
message(WARNING "Could not parse GTest ${hit} for adding to CTest.")
|
|
|
|
continue()
|
|
|
|
endif()
|
2014-05-12 20:21:37 +04:00
|
|
|
add_test(NAME ${test_name} COMMAND ${executable} --gtest_filter=${test_name} ${extra_args})
|
2009-10-01 09:12:40 +04:00
|
|
|
endforeach()
|
|
|
|
endforeach()
|
|
|
|
endfunction()
|
2009-08-17 06:12:04 +04:00
|
|
|
|
2009-10-01 09:12:40 +04:00
|
|
|
function(_gtest_append_debugs _endvar _library)
|
|
|
|
if(${_library} AND ${_library}_DEBUG)
|
|
|
|
set(_output optimized ${${_library}} debug ${${_library}_DEBUG})
|
|
|
|
else()
|
|
|
|
set(_output ${${_library}})
|
|
|
|
endif()
|
|
|
|
set(${_endvar} ${_output} PARENT_SCOPE)
|
2009-08-17 06:12:04 +04:00
|
|
|
endfunction()
|
|
|
|
|
2009-10-01 09:12:40 +04:00
|
|
|
function(_gtest_find_library _name)
|
|
|
|
find_library(${_name}
|
|
|
|
NAMES ${ARGN}
|
|
|
|
HINTS
|
2012-03-29 02:00:54 +04:00
|
|
|
ENV GTEST_ROOT
|
2009-10-01 09:12:40 +04:00
|
|
|
${GTEST_ROOT}
|
|
|
|
PATH_SUFFIXES ${_gtest_libpath_suffixes}
|
|
|
|
)
|
|
|
|
mark_as_advanced(${_name})
|
|
|
|
endfunction()
|
2009-08-17 06:12:04 +04:00
|
|
|
|
2009-10-01 09:12:40 +04:00
|
|
|
#
|
2009-08-17 06:12:04 +04:00
|
|
|
|
2009-10-01 09:12:40 +04:00
|
|
|
if(NOT DEFINED GTEST_MSVC_SEARCH)
|
|
|
|
set(GTEST_MSVC_SEARCH MD)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
set(_gtest_libpath_suffixes lib)
|
|
|
|
if(MSVC)
|
|
|
|
if(GTEST_MSVC_SEARCH STREQUAL "MD")
|
|
|
|
list(APPEND _gtest_libpath_suffixes
|
|
|
|
msvc/gtest-md/Debug
|
|
|
|
msvc/gtest-md/Release)
|
|
|
|
elseif(GTEST_MSVC_SEARCH STREQUAL "MT")
|
|
|
|
list(APPEND _gtest_libpath_suffixes
|
|
|
|
msvc/gtest/Debug
|
|
|
|
msvc/gtest/Release)
|
|
|
|
endif()
|
|
|
|
endif()
|
2009-08-17 06:12:04 +04:00
|
|
|
|
|
|
|
|
2009-10-01 09:12:40 +04:00
|
|
|
find_path(GTEST_INCLUDE_DIR gtest/gtest.h
|
|
|
|
HINTS
|
|
|
|
$ENV{GTEST_ROOT}/include
|
|
|
|
${GTEST_ROOT}/include
|
|
|
|
)
|
|
|
|
mark_as_advanced(GTEST_INCLUDE_DIR)
|
2009-08-17 06:12:04 +04:00
|
|
|
|
2009-10-01 09:12:40 +04:00
|
|
|
if(MSVC AND GTEST_MSVC_SEARCH STREQUAL "MD")
|
|
|
|
# The provided /MD project files for Google Test add -md suffixes to the
|
|
|
|
# library names.
|
|
|
|
_gtest_find_library(GTEST_LIBRARY gtest-md gtest)
|
|
|
|
_gtest_find_library(GTEST_LIBRARY_DEBUG gtest-mdd gtestd)
|
|
|
|
_gtest_find_library(GTEST_MAIN_LIBRARY gtest_main-md gtest_main)
|
|
|
|
_gtest_find_library(GTEST_MAIN_LIBRARY_DEBUG gtest_main-mdd gtest_maind)
|
2009-08-17 06:12:04 +04:00
|
|
|
else()
|
2009-10-01 09:12:40 +04:00
|
|
|
_gtest_find_library(GTEST_LIBRARY gtest)
|
|
|
|
_gtest_find_library(GTEST_LIBRARY_DEBUG gtestd)
|
|
|
|
_gtest_find_library(GTEST_MAIN_LIBRARY gtest_main)
|
|
|
|
_gtest_find_library(GTEST_MAIN_LIBRARY_DEBUG gtest_maind)
|
2009-08-17 06:12:04 +04:00
|
|
|
endif()
|
|
|
|
|
Modules: Include builtin FindPackageHandleStandardArgs directly
The FindPackageHandleStandardArgs module was originally created outside
of CMake. It was added for CMake 2.6.0 by commit e118a627 (add a macro
FIND_PACKAGE_HANDLE_STANDARD_ARGS..., 2007-07-18). However, it also
proliferated into a number of other projects that at the time required
only CMake 2.4 and thus could not depend on CMake to provide the module.
CMake's own find modules started using the module in commit b5f656e0
(use the new FIND_PACKAGE_HANDLE_STANDARD_ARGS in some of the FindXXX
modules..., 2007-07-18).
Then commit d358cf5c (add 2nd, more powerful mode to
find_package_handle_standard_args, 2010-07-29) added a new feature to
the interface of the module that was fully optional and backward
compatible with all existing users of the module. Later commit 5f183caa
(FindZLIB: use the FPHSA version mode, 2010-08-04) and others shortly
thereafter started using the new interface in CMake's own find modules.
This change was also backward compatible because it was only an
implementation detail within each module.
Unforutnately these changes introduced a problem for projects that still
have an old copy of FindPackageHandleStandardArgs in CMAKE_MODULE_PATH.
When any such project uses one of CMake's builtin find modules the line
include(FindPackageHandleStandardArgs)
loads the copy from the project which does not have the new interface!
Then the including find module tries to use the new interface with the
old module and fails.
Whether this breakage can be considered a backward incompatible change
in CMake is debatable. The situation is analagous to copying a standard
library header from one version of a compiler into a project and then
observing problems when the next version of the compiler reports errors
in its other headers that depend on its new version of the original
header. Nevertheless it is a change to CMake that causes problems for
projects that worked with previous versions.
This problem was discovered during the 2.8.3 release candidate cycle.
It is an instance of a more general problem with projects that provide
their own versions of CMake modules when other CMake modules depend on
them. At the time we resolved this instance of the problem with commit
b0118402 (Use absolute path to FindPackageHandleStandardArgs.cmake
everywhere, 2010-09-28) for the 2.8.3 release.
In order to address the more general problem we introduced policy
CMP0017 in commit db44848f (Prefer files from CMAKE_ROOT when including
from CMAKE_ROOT, 2010-11-17). That change was followed by commit
ce28737c (Remove usage of CMAKE_CURRENT_LIST_DIR now that we have
CMP0017, 2010-12-20) which reverted the original workaround in favor of
using the policy. However, existing project releases do not set the
policy behavior to NEW and therefore still exhibit the problem.
We introduced in commit a364daf1 (Allow users to specify defaults for
unset policies, 2011-01-03) an option for users to build existing
projects by adding -DCMAKE_POLICY_DEFAULT_CMP0017=NEW to the command
line. Unfortunately this solution still does not allow such projects to
build out of the box, and there is no good way to suggest the use of the
new option.
The only remaining solution to keep existing projects that exhibit this
problem building is to restore the change originally made in commit
b0118402 (Use absolute path to FindPackageHandleStandardArgs.cmake
everywhere, 2010-09-28). This also avoids policy CMP0017 warnings for
this particular instance of the problem the policy addresses.
2011-01-20 18:56:49 +03:00
|
|
|
include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
|
2009-10-01 09:12:40 +04:00
|
|
|
FIND_PACKAGE_HANDLE_STANDARD_ARGS(GTest DEFAULT_MSG GTEST_LIBRARY GTEST_INCLUDE_DIR GTEST_MAIN_LIBRARY)
|
|
|
|
|
|
|
|
if(GTEST_FOUND)
|
|
|
|
set(GTEST_INCLUDE_DIRS ${GTEST_INCLUDE_DIR})
|
|
|
|
_gtest_append_debugs(GTEST_LIBRARIES GTEST_LIBRARY)
|
|
|
|
_gtest_append_debugs(GTEST_MAIN_LIBRARIES GTEST_MAIN_LIBRARY)
|
|
|
|
set(GTEST_BOTH_LIBRARIES ${GTEST_LIBRARIES} ${GTEST_MAIN_LIBRARIES})
|
2009-08-17 06:12:04 +04:00
|
|
|
|
2015-12-10 18:52:07 +03:00
|
|
|
include(CMakeFindDependencyMacro)
|
|
|
|
find_dependency(Threads)
|
|
|
|
|
|
|
|
if(NOT TARGET GTest::GTest)
|
|
|
|
add_library(GTest::GTest UNKNOWN IMPORTED)
|
|
|
|
set_target_properties(GTest::GTest PROPERTIES
|
|
|
|
INTERFACE_LINK_LIBRARIES "Threads::Threads")
|
|
|
|
if(GTEST_INCLUDE_DIRS)
|
|
|
|
set_target_properties(GTest::GTest PROPERTIES
|
|
|
|
INTERFACE_INCLUDE_DIRECTORIES "${GTEST_INCLUDE_DIRS}")
|
|
|
|
endif()
|
|
|
|
if(EXISTS "${GTEST_LIBRARY}")
|
|
|
|
set_target_properties(GTest::GTest PROPERTIES
|
|
|
|
IMPORTED_LINK_INTERFACE_LANGUAGES "CXX"
|
|
|
|
IMPORTED_LOCATION "${GTEST_LIBRARY}")
|
|
|
|
endif()
|
|
|
|
if(EXISTS "${GTEST_LIBRARY_DEBUG}")
|
|
|
|
set_property(TARGET GTest::GTest APPEND PROPERTY
|
|
|
|
IMPORTED_CONFIGURATIONS DEBUG)
|
|
|
|
set_target_properties(GTest::GTest PROPERTIES
|
|
|
|
IMPORTED_LINK_INTERFACE_LANGUAGES_DEBUG "CXX"
|
|
|
|
IMPORTED_LOCATION_DEBUG "${GTEST_LIBRARY_DEBUG}")
|
|
|
|
endif()
|
|
|
|
if(EXISTS "${GTEST_LIBRARY_RELEASE}")
|
|
|
|
set_property(TARGET GTest::GTest APPEND PROPERTY
|
|
|
|
IMPORTED_CONFIGURATIONS RELEASE)
|
|
|
|
set_target_properties(GTest::GTest PROPERTIES
|
|
|
|
IMPORTED_LINK_INTERFACE_LANGUAGES_RELEASE "CXX"
|
|
|
|
IMPORTED_LOCATION_RELEASE "${GTEST_LIBRARY_RELEASE}")
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
if(NOT TARGET GTest::Main)
|
|
|
|
add_library(GTest::Main UNKNOWN IMPORTED)
|
|
|
|
set_target_properties(GTest::Main PROPERTIES
|
|
|
|
INTERFACE_LINK_LIBRARIES "GTest::GTest")
|
|
|
|
if(EXISTS "${GTEST_MAIN_LIBRARY}")
|
|
|
|
set_target_properties(GTest::Main PROPERTIES
|
|
|
|
IMPORTED_LINK_INTERFACE_LANGUAGES "CXX"
|
|
|
|
IMPORTED_LOCATION "${GTEST_MAIN_LIBRARY}")
|
|
|
|
endif()
|
|
|
|
if(EXISTS "${GTEST_MAIN_LIBRARY_DEBUG}")
|
|
|
|
set_property(TARGET GTest::Main APPEND PROPERTY
|
|
|
|
IMPORTED_CONFIGURATIONS DEBUG)
|
|
|
|
set_target_properties(GTest::Main PROPERTIES
|
|
|
|
IMPORTED_LINK_INTERFACE_LANGUAGES_DEBUG "CXX"
|
|
|
|
IMPORTED_LOCATION_DEBUG "${GTEST_MAIN_LIBRARY_DEBUG}")
|
|
|
|
endif()
|
|
|
|
if(EXISTS "${GTEST_MAIN_LIBRARY_RELEASE}")
|
|
|
|
set_property(TARGET GTest::Main APPEND PROPERTY
|
|
|
|
IMPORTED_CONFIGURATIONS RELEASE)
|
|
|
|
set_target_properties(GTest::Main PROPERTIES
|
|
|
|
IMPORTED_LINK_INTERFACE_LANGUAGES_RELEASE "CXX"
|
|
|
|
IMPORTED_LOCATION_RELEASE "${GTEST_MAIN_LIBRARY_RELEASE}")
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
endif()
|