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.
使用 MinGW 从源代码构建库然后在 GUI 应用程序的项目中引用它的正确方法是什么?我不熟悉 gcc 和 makefile,但我认为必须有一个实用程序可以从现有源生成 makefile。
库本身不依赖于标准 C 库以外的任何东西。
谢谢!
在 pro 文件中写入
LIBS += path/to/your/lib
这将添加对静态库的引用。请参阅文档。