3

尝试通过 QSound 播放声音(QT 5,Ubuntu 13.04)

编码:

#include <QtMultimedia/QSound>
void MainWindow::on_pushButton_2_clicked()
{
QSound::play("sounds/win.wav");
}

并得到 2 个错误:未定义引用 `QSound::play(QString const&)' collect2: error: ld returned 1 exit status

我究竟做错了什么 ?在这里的文档中,我看到了相同的代码。

4

1 回答 1

4

您需要包含多媒体模块。将此添加到您的 .pro 文件中:

QT += multimedia
于 2013-05-19T18:27:48.063 回答