cannot find -lQtMultimedia
Hi guys
I m trying to record my voice using Qt , but when i run the program i get this error: cannot find -lQtMultimedia .
How can i solve this issue.
Thanks in advance
12 replies
Qt version :4.7.1 on linux system (ubuntu 10.10)
this is the .pro file
- #-------------------------------------------------
- #
- # Project created by QtCreator 2011-04-20T10:11:14
- #
- #-------------------------------------------------
- QT += core
- QT -= gui
- QT +=multimedia
- TARGET = audiotest
- CONFIG += console
- CONFIG -= app_bundle
- TEMPLATE = app
- target.path=/usr/local/bin
- INSTALLS=target
- LIBS +=/home/aladin/QtSDK/QtCreator/lib/qtcreator/libQtMultimedia.so
- SOURCES += main.cpp \
- audio.cpp
- HEADERS += \
- audio.h
i added this lines :
1-QT +=multimedia
2-INCLUDEPATH +=/home/aladin/QtSDK/Desktop/Qt/473/gcc/include/QtMultimedia/
3-INCLUDEPATH +=/home/aladin/QtSDK/Desktop/Qt/473/gcc/include/
4-LIBS +=/home/aladin/QtSDK/QtCreator/lib/qtcreator/libQtMultimedia.so
It is most likely in different package; you need to include it with QT += multimedia… Really, read its documentation, the forum is not substitute to doc. http://doc.qt.nokia.com/qtmobility-1.1/index.html
I also got crazy with this error, and the documentation really didn’t help.
Combining serveral posts on other forums, and with trial and error, I needed following steps to get the multimedia compiling and running again under Ubuntu.
(In the .pro file)
QT += mobility multimediakit
CONFIG += mobility
MOBILITY = multimedia
… and also remove the QT += multimedia
You must log in to post a reply. Not a member yet? Register here!




