FindGTest.cmake 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268
  1. #.rst:
  2. # FindGTest
  3. # ---------
  4. #
  5. # Locate the Google C++ Testing Framework.
  6. #
  7. # Imported targets
  8. # ^^^^^^^^^^^^^^^^
  9. #
  10. # This module defines the following :prop_tgt:`IMPORTED` targets:
  11. #
  12. # ``GTest::GTest``
  13. # The Google Test ``gtest`` library, if found; adds Thread::Thread
  14. # automatically
  15. # ``GTest::Main``
  16. # The Google Test ``gtest_main`` library, if found
  17. #
  18. #
  19. # Result variables
  20. # ^^^^^^^^^^^^^^^^
  21. #
  22. # This module will set the following variables in your project:
  23. #
  24. # ``GTEST_FOUND``
  25. # Found the Google Testing framework
  26. # ``GTEST_INCLUDE_DIRS``
  27. # the directory containing the Google Test headers
  28. #
  29. # The library variables below are set as normal variables. These
  30. # contain debug/optimized keywords when a debugging library is found.
  31. #
  32. # ``GTEST_LIBRARIES``
  33. # The Google Test ``gtest`` library; note it also requires linking
  34. # with an appropriate thread library
  35. # ``GTEST_MAIN_LIBRARIES``
  36. # The Google Test ``gtest_main`` library
  37. # ``GTEST_BOTH_LIBRARIES``
  38. # Both ``gtest`` and ``gtest_main``
  39. #
  40. # Cache variables
  41. # ^^^^^^^^^^^^^^^
  42. #
  43. # The following cache variables may also be set:
  44. #
  45. # ``GTEST_ROOT``
  46. # The root directory of the Google Test installation (may also be
  47. # set as an environment variable)
  48. # ``GTEST_MSVC_SEARCH``
  49. # If compiling with MSVC, this variable can be set to ``MD`` or
  50. # ``MT`` (the default) to enable searching a GTest build tree
  51. #
  52. #
  53. # Example usage
  54. # ^^^^^^^^^^^^^
  55. #
  56. # ::
  57. #
  58. # enable_testing()
  59. # find_package(GTest REQUIRED)
  60. #
  61. # add_executable(foo foo.cc)
  62. # target_link_libraries(foo GTest::GTest GTest::Main)
  63. #
  64. # add_test(AllTestsInFoo foo)
  65. #
  66. #
  67. # Deeper integration with CTest
  68. # ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  69. #
  70. # If you would like each Google test to show up in CTest as a test you
  71. # may use the following macro::
  72. #
  73. # GTEST_ADD_TESTS(executable extra_args files...)
  74. #
  75. # ``executable``
  76. # the path to the test executable
  77. # ``extra_args``
  78. # a list of extra arguments to be passed to executable enclosed in
  79. # quotes (or ``""`` for none)
  80. # ``files...``
  81. # a list of source files to search for tests and test fixtures. Or
  82. # ``AUTO`` to find them from executable target
  83. #
  84. # However, note that this macro will slow down your tests by running
  85. # an executable for each test and test fixture.
  86. #
  87. # Example usage::
  88. #
  89. # set(FooTestArgs --foo 1 --bar 2)
  90. # add_executable(FooTest FooUnitTest.cc)
  91. # GTEST_ADD_TESTS(FooTest "${FooTestArgs}" AUTO)
  92. #=============================================================================
  93. # Copyright 2009 Kitware, Inc.
  94. # Copyright 2009 Philip Lowman <philip@yhbt.com>
  95. # Copyright 2009 Daniel Blezek <blezek@gmail.com>
  96. #
  97. # Distributed under the OSI-approved BSD License (the "License");
  98. # see accompanying file Copyright.txt for details.
  99. #
  100. # This software is distributed WITHOUT ANY WARRANTY; without even the
  101. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  102. # See the License for more information.
  103. #=============================================================================
  104. # (To distribute this file outside of CMake, substitute the full
  105. # License text for the above reference.)
  106. #
  107. # Thanks to Daniel Blezek <blezek@gmail.com> for the GTEST_ADD_TESTS code
  108. function(GTEST_ADD_TESTS executable extra_args)
  109. if(NOT ARGN)
  110. message(FATAL_ERROR "Missing ARGN: Read the documentation for GTEST_ADD_TESTS")
  111. endif()
  112. if(ARGN STREQUAL "AUTO")
  113. # obtain sources used for building that executable
  114. get_property(ARGN TARGET ${executable} PROPERTY SOURCES)
  115. endif()
  116. set(gtest_case_name_regex ".*\\( *([A-Za-z_0-9]+) *, *([A-Za-z_0-9]+) *\\).*")
  117. set(gtest_test_type_regex "(TYPED_TEST|TEST_?[FP]?)")
  118. foreach(source ${ARGN})
  119. set_property(DIRECTORY APPEND PROPERTY CMAKE_CONFIGURE_DEPENDS ${source})
  120. file(READ "${source}" contents)
  121. string(REGEX MATCHALL "${gtest_test_type_regex} *\\(([A-Za-z_0-9 ,]+)\\)" found_tests ${contents})
  122. foreach(hit ${found_tests})
  123. string(REGEX MATCH "${gtest_test_type_regex}" test_type ${hit})
  124. # Parameterized tests have a different signature for the filter
  125. if("x${test_type}" STREQUAL "xTEST_P")
  126. string(REGEX REPLACE ${gtest_case_name_regex} "*/\\1.\\2/*" test_name ${hit})
  127. elseif("x${test_type}" STREQUAL "xTEST_F" OR "x${test_type}" STREQUAL "xTEST")
  128. string(REGEX REPLACE ${gtest_case_name_regex} "\\1.\\2" test_name ${hit})
  129. elseif("x${test_type}" STREQUAL "xTYPED_TEST")
  130. string(REGEX REPLACE ${gtest_case_name_regex} "\\1/*.\\2" test_name ${hit})
  131. else()
  132. message(WARNING "Could not parse GTest ${hit} for adding to CTest.")
  133. continue()
  134. endif()
  135. add_test(NAME ${test_name} COMMAND ${executable} --gtest_filter=${test_name} ${extra_args})
  136. endforeach()
  137. endforeach()
  138. endfunction()
  139. function(_gtest_append_debugs _endvar _library)
  140. if(${_library} AND ${_library}_DEBUG)
  141. set(_output optimized ${${_library}} debug ${${_library}_DEBUG})
  142. else()
  143. set(_output ${${_library}})
  144. endif()
  145. set(${_endvar} ${_output} PARENT_SCOPE)
  146. endfunction()
  147. function(_gtest_find_library _name)
  148. find_library(${_name}
  149. NAMES ${ARGN}
  150. HINTS
  151. ENV GTEST_ROOT
  152. ${GTEST_ROOT}
  153. PATH_SUFFIXES ${_gtest_libpath_suffixes}
  154. )
  155. mark_as_advanced(${_name})
  156. endfunction()
  157. #
  158. if(NOT DEFINED GTEST_MSVC_SEARCH)
  159. set(GTEST_MSVC_SEARCH MD)
  160. endif()
  161. set(_gtest_libpath_suffixes lib)
  162. if(MSVC)
  163. if(GTEST_MSVC_SEARCH STREQUAL "MD")
  164. list(APPEND _gtest_libpath_suffixes
  165. msvc/gtest-md/Debug
  166. msvc/gtest-md/Release)
  167. elseif(GTEST_MSVC_SEARCH STREQUAL "MT")
  168. list(APPEND _gtest_libpath_suffixes
  169. msvc/gtest/Debug
  170. msvc/gtest/Release)
  171. endif()
  172. endif()
  173. find_path(GTEST_INCLUDE_DIR gtest/gtest.h
  174. HINTS
  175. $ENV{GTEST_ROOT}/include
  176. ${GTEST_ROOT}/include
  177. )
  178. mark_as_advanced(GTEST_INCLUDE_DIR)
  179. if(MSVC AND GTEST_MSVC_SEARCH STREQUAL "MD")
  180. # The provided /MD project files for Google Test add -md suffixes to the
  181. # library names.
  182. _gtest_find_library(GTEST_LIBRARY gtest-md gtest)
  183. _gtest_find_library(GTEST_LIBRARY_DEBUG gtest-mdd gtestd)
  184. _gtest_find_library(GTEST_MAIN_LIBRARY gtest_main-md gtest_main)
  185. _gtest_find_library(GTEST_MAIN_LIBRARY_DEBUG gtest_main-mdd gtest_maind)
  186. else()
  187. _gtest_find_library(GTEST_LIBRARY gtest)
  188. _gtest_find_library(GTEST_LIBRARY_DEBUG gtestd)
  189. _gtest_find_library(GTEST_MAIN_LIBRARY gtest_main)
  190. _gtest_find_library(GTEST_MAIN_LIBRARY_DEBUG gtest_maind)
  191. endif()
  192. include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
  193. FIND_PACKAGE_HANDLE_STANDARD_ARGS(GTest DEFAULT_MSG GTEST_LIBRARY GTEST_INCLUDE_DIR GTEST_MAIN_LIBRARY)
  194. if(GTEST_FOUND)
  195. set(GTEST_INCLUDE_DIRS ${GTEST_INCLUDE_DIR})
  196. _gtest_append_debugs(GTEST_LIBRARIES GTEST_LIBRARY)
  197. _gtest_append_debugs(GTEST_MAIN_LIBRARIES GTEST_MAIN_LIBRARY)
  198. set(GTEST_BOTH_LIBRARIES ${GTEST_LIBRARIES} ${GTEST_MAIN_LIBRARIES})
  199. include(CMakeFindDependencyMacro)
  200. find_dependency(Threads)
  201. if(NOT TARGET GTest::GTest)
  202. add_library(GTest::GTest UNKNOWN IMPORTED)
  203. set_target_properties(GTest::GTest PROPERTIES
  204. INTERFACE_LINK_LIBRARIES "Threads::Threads")
  205. if(GTEST_INCLUDE_DIRS)
  206. set_target_properties(GTest::GTest PROPERTIES
  207. INTERFACE_INCLUDE_DIRECTORIES "${GTEST_INCLUDE_DIRS}")
  208. endif()
  209. if(EXISTS "${GTEST_LIBRARY}")
  210. set_target_properties(GTest::GTest PROPERTIES
  211. IMPORTED_LINK_INTERFACE_LANGUAGES "CXX"
  212. IMPORTED_LOCATION "${GTEST_LIBRARY}")
  213. endif()
  214. if(EXISTS "${GTEST_LIBRARY_DEBUG}")
  215. set_property(TARGET GTest::GTest APPEND PROPERTY
  216. IMPORTED_CONFIGURATIONS DEBUG)
  217. set_target_properties(GTest::GTest PROPERTIES
  218. IMPORTED_LINK_INTERFACE_LANGUAGES_DEBUG "CXX"
  219. IMPORTED_LOCATION_DEBUG "${GTEST_LIBRARY_DEBUG}")
  220. endif()
  221. if(EXISTS "${GTEST_LIBRARY_RELEASE}")
  222. set_property(TARGET GTest::GTest APPEND PROPERTY
  223. IMPORTED_CONFIGURATIONS RELEASE)
  224. set_target_properties(GTest::GTest PROPERTIES
  225. IMPORTED_LINK_INTERFACE_LANGUAGES_RELEASE "CXX"
  226. IMPORTED_LOCATION_RELEASE "${GTEST_LIBRARY_RELEASE}")
  227. endif()
  228. endif()
  229. if(NOT TARGET GTest::Main)
  230. add_library(GTest::Main UNKNOWN IMPORTED)
  231. set_target_properties(GTest::Main PROPERTIES
  232. INTERFACE_LINK_LIBRARIES "GTest::GTest")
  233. if(EXISTS "${GTEST_MAIN_LIBRARY}")
  234. set_target_properties(GTest::Main PROPERTIES
  235. IMPORTED_LINK_INTERFACE_LANGUAGES "CXX"
  236. IMPORTED_LOCATION "${GTEST_MAIN_LIBRARY}")
  237. endif()
  238. if(EXISTS "${GTEST_MAIN_LIBRARY_DEBUG}")
  239. set_property(TARGET GTest::Main APPEND PROPERTY
  240. IMPORTED_CONFIGURATIONS DEBUG)
  241. set_target_properties(GTest::Main PROPERTIES
  242. IMPORTED_LINK_INTERFACE_LANGUAGES_DEBUG "CXX"
  243. IMPORTED_LOCATION_DEBUG "${GTEST_MAIN_LIBRARY_DEBUG}")
  244. endif()
  245. if(EXISTS "${GTEST_MAIN_LIBRARY_RELEASE}")
  246. set_property(TARGET GTest::Main APPEND PROPERTY
  247. IMPORTED_CONFIGURATIONS RELEASE)
  248. set_target_properties(GTest::Main PROPERTIES
  249. IMPORTED_LINK_INTERFACE_LANGUAGES_RELEASE "CXX"
  250. IMPORTED_LOCATION_RELEASE "${GTEST_MAIN_LIBRARY_RELEASE}")
  251. endif()
  252. endif()
  253. endif()