我知道这个问题经常被问到,但我不是 C++ 专业人士,我可能只是遗漏了一些非常简单的东西(而这些其他问题对我来说似乎是非常高级的问题)
我正在尝试在我的代码中使用 BGSLibrary (https://github.com/andrewssobral/bgslibrary)。该库很好地解释了如何使用 cmake 构建项目以及如何集成代码。我已经使用 cmake 构建了该项目,但是集成仍然会引发 LNK2019 错误。有人可以指导我找到正确的副本,或者有人可以回答我吗?我将粘贴一些简单的代码来展示错误和错误本身。提前致谢。
我使用 Visual Studio 2019 作为编译器
// ExampleProject.cpp : This file contains the 'main' function. Program execution begins and ends there.
//
#include <iostream>
#include "src/algorithms/algorithms.h"
auto algorithmsName = BGS_Factory::Instance()->GetRegisteredAlgorithmsName();
int main()
{
std::cout << "Hello World!\n";
}
我对 C++ 很陌生,所以请原谅我这个可能很愚蠢的问题:)