Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Qt5 examples package on Debian

How can I separately get the package with examples for Qt5 on Debian Jessie? I have QtCreator with Qt5 and can develop Qt apps, however I do not have the examples. Synaptic Package Manager comes up with too many hits when I search Qt. I think the closes thing to what I want is qtbase5-examples, but I'm not 100% sure if this is what I have to download.

like image 987
ulak blade Avatar asked Mar 15 '23 01:03

ulak blade


1 Answers

These files are provided by qtbase5-examples, this is correct. However, the files are not installed in obvious path and it depends on the architecture:

/usr/lib/x86_64-linux-gnu/qt5/examples/ [amd64]

/usr/lib/i386-linux-gnu/qt5/examples/ [i386]

More info about paths

These files are correct qt5 example code from the Qt Examples List.

like image 183
Victor Polevoy Avatar answered Mar 23 '23 15:03

Victor Polevoy