mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-05 21:31:08 -06:00
This introduces 2 new INTERFACE IMPORTED libraries: GTest::gtest and GTest::gtest_main. They link to GTest::GTest and GTest::Main targets respectively, therefore working as aliases. These new names map the names of the targets from upstream GTest's CMake package config. Fixes: #20255
19 lines
701 B
CMake
19 lines
701 B
CMake
cmake_minimum_required(VERSION 3.1)
|
|
project(TestFindGTest CXX)
|
|
include(CTest)
|
|
|
|
find_package(GTest REQUIRED)
|
|
|
|
add_executable(test_gtest_tgt main.cxx)
|
|
target_link_libraries(test_gtest_tgt GTest::Main)
|
|
add_test(NAME test_gtest_tgt COMMAND test_gtest_tgt)
|
|
|
|
add_executable(test_gtest_tgt_upstream main.cxx)
|
|
target_link_libraries(test_gtest_tgt_upstream GTest::gtest_main)
|
|
add_test(NAME test_gtest_tgt_upstream COMMAND test_gtest_tgt_upstream)
|
|
|
|
add_executable(test_gtest_var main.cxx)
|
|
target_include_directories(test_gtest_var PRIVATE ${GTEST_INCLUDE_DIRS})
|
|
target_link_libraries(test_gtest_var PRIVATE ${GTEST_BOTH_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT})
|
|
add_test(NAME test_gtest_var COMMAND test_gtest_var)
|