c++在 Windows 中通过 Qt 使用 PortAudio

发布于 2025-01-05 19:51:29 字数 282 浏览 1 评论 0原文

我已经成功地使用 MSYS 在 Windows 上编译了 PortAudio。 此过程创建了 2 个文件:libportaudio-2.dll 和 libportaudio.dll.a

现在我想链接 QtCreator 中的库,但我不能,因为它需要 .lib 文件。

如果有人有在 Windows 下使用 MSYS 编译和使用库的经验,我们将不胜感激。

(注意:它们是使用 MindGW 编译器编译的。我不想用 Microsoft Visual Studio 编译它,因为那样我将不得不编译 QT)

I have managed to compile PortAudio on windows using MSYS.
this process has created 2 files: libportaudio-2.dll and libportaudio.dll.a

Now i want to link the libraries in QtCreator, but i can not since it requires a .lib file.

If anybody have experience of compiling and using libraries with MSYS under windows, your input is appreciated.

(Note: they are compiled using MindGW compiler. I dont want to compile it with Microsoft Visual Studio, since then i will have to compile QT)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我是有多爱你 2025-01-12 19:51:29

解决你的问题很简单。这里我报告一个文件的例子。需要使用的专业人士:

QT       += core
QT       -= gui
TARGET = mioTestAudio
CONFIG   += console
CONFIG   -= app_bundle
TEMPLATE = app

LIBS += -lportaudio.dll   <-------- this is the part you are interested

SOURCES += main.cpp

to solve your problem is very simple. Here I report an example of a file. pros who need to use:

QT       += core
QT       -= gui
TARGET = mioTestAudio
CONFIG   += console
CONFIG   -= app_bundle
TEMPLATE = app

LIBS += -lportaudio.dll   <-------- this is the part you are interested

SOURCES += main.cpp
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文