我正在使用<XZY>IDE来编译我的程序,并且在导入/集成特定库时遇到一些麻烦.
我收到错误消息
fatal error: 3rdPartyLib.h: No such file or directory
Run Code Online (Sandbox Code Playgroud)
为一个
#include "3rdPartyLib.h"
Run Code Online (Sandbox Code Playgroud)
声明
ld.exe: cannot find `lib3rdParty.a`
Run Code Online (Sandbox Code Playgroud)
用于指定
3rdParty
Run Code Online (Sandbox Code Playgroud)
在其他库中
至少我收到了一些错误信息
undefined reference to `lib3rdParty::foo()'
Run Code Online (Sandbox Code Playgroud)
我该怎么做才能解决这个问题?