gpt4 book ai didi

c++ - CMake:将 GTest 添加到构建中

转载 作者:行者123 更新时间:2023-11-30 03:13:28 24 4
gpt4 key购买 nike

我正在尝试使用 FetchContent 模块将 googletest 添加到我的构建中,但我遇到了很多不完整的答案,并且无法到达我想要的位置。似乎有过多使用 ExternalProject 模块的过时示例,但很少有使用 FetchContent 模块的有用示例。

这是我今天浏览过的引用文献的不完整列表:

这是我要使用的文件结构:

-root
-build
-googletest-build
-googletest-src
-googletest-test
-src
-test
-src
-CMakeLists.txt
-AllOfMySourceFiles
-test
-CMakeLists.txt
-testgtest.cpp
-CMakeLists.txt

这些是我试图用来构建的命令:

cmake ..
cmake --build .

到目前为止,我能够将我所有的源文件链接到我想要的 dll 中,而且我非常有信心我知道如何将它与我想要使用的测试 exe 链接。我遇到的主要问题是使用 FetchContent 模块将 testgtest.cpp 构建到可执行文件中并将其与 googletest 链接。它一直无法构建,而失败的具体原因根本不明显。

root/CMakeLists.txt

cmake_minimum_required(VERSION 3.0)
set(CMAKE_CXX_FLAGS_RELEASE "/MT")
set(CMAKE_CXX_FLAGS_DEBUG "/MTd")
set(CMAKE_CXX_STANDARD 11)

set(LIBNAME "WTP")
set(TESTNAME "TestRunner")

set(LIB_MAJOR_VERS "0")
set(LIB_MINOR_VERS "0")
set(LIB_PATCH_VERS "0")

#build source
project(${LIBNAME}
VERSION ${LIB_MAJOR_VERS}.${LIB_MINOR_VERS}.${LIB_PATCH_VERS})
add_subdirectory(src)

#build tests
project(${TESTNAME})

add_subdirectory(test)
enable_testing()
add_test(${TESTNAME} ${TESTNAME})

src/CMakeLists.txt

# Build output setup
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/src/lib)
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/src/lib)
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/src/bin)

#get all of the source files
set(SRCS Export.c
Regions/ReferenceConstants.h
Regions/Region1.h
Regions/Region2.h
Regions/Region3.h
Regions/Boundaries/RegionBoundaries/R2andR3.h
Regions/Boundaries/SubregionBoundaries/Region3/Boundaries_vTP.h)

add_library(${LIBNAME} SHARED ${SRCS})

到目前为止,这个正在按照我的预期工作。

测试/CMakeLists.txt

# Build output setup
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/test/lib)
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/test/lib)
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/test/bin)

################################
# GTest
################################
project(googletest-git NONE)

include(FetchContent)
FetchContent_Declare(
googletest
GIT_REPOSITORY https://github.com/google/googletest.git
GIT_TAG release-1.8.0
)

set(gtest_force_shared_crt ON CACHE BOOL "" FORCE)
set(BUILD_GMOCK OFF CACHE BOOL "" FORCE)
set(BUILD_GTEST ON CACHE BOOL "" FORCE)

FetchContent_MakeAvailable(googletest)

################################
# Tests
################################
# Add test cpp file
add_executable(${TESTNAME} testgtest.cpp)
# Link test executable against gtest & gtest_main
target_link_libraries(${TESTNAME} gtest gtest_main)

我不清楚我应该在这里特别做什么 A) 使用 FetchContent 模块将 googletest 添加到我的构建 AND B) 链接我的测试可执行文件谷歌测试。

测试/testgtest.cpp

#include "gtest/gtest.h"

TEST(sample_test_case, sample_test)
{
EXPECT_EQ(1, 1);
}

我在 testgtest.cpp 中具体应该 #include 什么并不明显,但我在我看到的示例中看到了这一点,所以我认为这是一些迟钝的、神秘的魔法,只是应该起作用。

这是我所看到的输出:

$ cmake --build .
Microsoft (R) Build Engine version 16.2.32702+c4012a063 for .NET Framework
Copyright (C) Microsoft Corporation. All rights reserved.

gtest-all.cc
D:\root\build\_deps\googletest-src\googletest\include\gtest/internal/gtest-port.h(996,34): error C2220: warning treated as error - no 'object' file generated [D:\root\build\_deps\googletest-build\googletest\gtest.vcxproj]
D:\root\build\_deps\googletest-src\googletest\include\gtest/internal/gtest-port.h(996,34): warning C4996: 'std::tr1': warning STL4002: The non-Standard std::tr1 namespace and TR1-only machinery are deprecated and will be REMOVED. You can define _SILENCE_TR1_NAMESPACE_DEPRECATION_WARNING to acknowledge that you have received this warning. [D:\root\build\_deps\googletest-build\googletest\gtest.vcxproj]

警告 C4996 将继续令人作呕地重复,直到它结束。

我确实想从 git 中获取 googletest,那么我需要做哪些不同的事情才能在我的测试中成功构建和使用 googletest?

感谢阅读

最佳答案

这就是我解决问题的原因。

感谢Chipster感谢您对该问题进行更多研究并最终将我推向正确的方向。

由于问题似乎源于 release-1.8.0,其中包含一些未合并到其他版本中的错误,我认为必须有一个更新的 googletest 版本,我可以在我的 CMake 文件中引用它解决了这个问题。

你看,只是将其从 release-1.8.0 更改为 release-1.10.0(在撰写本文时最新)为我解决了这个特定问题:

测试/CMakeLists.txt

FetchContent_Declare(
googletest
GIT_REPOSITORY https://github.com/google/googletest.git
GIT_TAG release-1.10.0
)

对于那些想知道删除以下行是否适用于此解决方案和场景的人,以便您可以构建 googlemock 和 googletest:

测试/CMakeLists.txt

set(BUILD_GMOCK OFF CACHE BOOL "" FORCE)
set(BUILD_GTEST ON CACHE BOOL "" FORCE)

我也对此进行了测试,并且能够在删除这些行的情况下构建我的测试运行器。

关于c++ - CMake:将 GTest 添加到构建中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58677831/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com