我使用cmake来构建我的项目,并使用conan来安装Google Test作为依赖项:
conanfile.txt
[requires]
gtest/1.7.0@lasote/stable
[generators]
cmake
[imports]
bin, *.dll -> ./build/bin
lib, *.dylib* -> ./build/bin
的CMakeLists.txt
PROJECT(MyTestingExample)
CMAKE_MINIMUM_REQUIRED(VERSION 2.8)
INCLUDE(conanbuildinfo.cmake)
CONAN_BASIC_SETUP()
ADD_EXECUTABLE(my_test test/my_test.cpp)
TARGET_LINK_LIBRARIES(my_test ${CONAN_LIBS})
测试/ my_test.cpp
#include <gtest/gtest.h>
#include <string>
TEST(MyTest, foobar) {
std::string foo("foobar");
std::string bar("foobar");
ASSERT_STREQ(foo.c_str(), bar.c_str()); // working
EXPECT_FALSE(false); // error
}
构建
$ conan install --build=missing
$ mkdir build && cd build
$ cmake .. && cmake --build .
我可以使用ASSERT_STREQ
,但如果我使用EXPECT_FALSE
,我会收到意外错误:
my_test.cpp:(.text+0x1e1): undefined reference to `testing::internal::GetBoolAssertionFailureMessage[abi:cxx11](testing::AssertionResult const&, char const*, char const*, char const*)'
collect2: error: ld returned 1 exit status
我的配置有什么问题?
答案 0 :(得分:4)
问题是您使用默认设置(构建类型发布)安装conan依赖项:
$ conan install --build=missing
# equivalent to
$ conan install -s build_type=Release ... --build=missing
您可以在conan.conf
文件中找到默认设置
然后,您在nix系统中使用cmake,其默认构建类型是 Debug ,这是一个单一的conf环境(与多配置调试/发布环境相反,作为Visual Studio ),所以当你这样做时:
$ cmake .. && cmake --build .
# equivalent to
$ cmake .. -DCMAKE_BUILD_TYPE=Debug && cmake --build .
调试/发布版本的不兼容性导致了未解决的问题。因此,解决方案是使用与已安装的依赖项匹配的相同构建类型:
$ cmake .. -DCMAKE_BUILD_TYPE=Release && cmake --build .
如果使用像Visual Studio这样的多配置环境,正确的方法是:
$ cmake .. && cmake --build . --config Release