QtMultimedia module in Ubuntu 12.04LTS

I have some problems with the QtMultimedia module in Ubuntu 12.04. I can not find its development files in /usr/include . Should I install additional packages for this? If so, what's his name?

Note. I installed the QtSDK from Ubuntu packages, not the SDK provided by Nokia.

+6
source share
1 answer

I had the same problem that I just solved. It seems that the QtMultimedia module is now in the QtMobility package. Therefore, you need to install QtMobility, which provides QtMultimediaKit:

 sudo apt-get install qtmobility-dev 

When compiling, you must add the following flags:

 -I/usr/include/QtMultimediaKit -I/usr/include/QtMobility -lQtMultimediaKit 
+6
source

Source: https://habr.com/ru/post/920016/


All Articles