特定库的未定义参考:FastNoiseSIMD

问题描述 投票:0回答:1

我是 C++ 新手,我正在尝试包含此库中的头文件,https://github.com/Auburns/FastNoiseSIMD

当我写下这一行时,

FastNoiseSIMD* myNoise = FastNoiseSIMD::NewFastNoiseSIMD();
我收到错误:
main.cpp:36: undefined reference to FastNoiseSIMD::NewFastNoiseSIMD(int)

这是我如何包含标题:

#include "FastNoiseSIMD/FastNoiseSIMD/FastNoiseSIMD.h"

如您所见,这些文件位于我的程序工作目录中的文件夹中。我正在使用 c++11 和 g++ 在 Linux 上工作。我没有看到任何需要链接的库文件,所以我被困在这里。

c++11 include
1个回答
0
投票
© www.soinside.com 2019 - 2024. All rights reserved.