Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我记得在 linux 上的 makefile 中使用了一个命令,而不是明确说明库和路径。它看起来像这样:
LIBS = `<command> Qt`
在构建机器上为 Qt ig 创建了正确的 -L -l 设置
你能告诉我命令是什么吗!我现在脑子里有一条捷径:-(
提前谢谢了!
您可能正在寻找命令 pkg-config,
要列出 pkg-config 路径中可用的所有库,请使用
pkg-config --list-all
在你的情况下,我建议尝试,
pkg-config --libs Qt
否则,
man pkg-config
是你的朋友。
希望有帮助!