尝试通过 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
我究竟做错了什么 ?在这里的文档中,我看到了相同的代码。