Matthew Hoggan
Matthew Hoggan

Reputation: 7594

Qt 4 On Ubuntu 13.04

I cant seem to find the "qt 4 sdk" installer for ubuntu 13.04. I need one that will install and allow me to have the qt creator that you get through the software center be able to detect qt 4 and 5 based projects. Has any one found any out of the box solutions for this. Or are there any instructions out there on how to get the ubuntu 13.04 version of qtcreator to recognize qt 4 projects?

Upvotes: 4

Views: 10308

Answers (1)

nickrak
nickrak

Reputation: 1635

apt-cache search libqt4

That should give you a list of all the packages needed to get the Qt 4 libs.
Should include:

libqt4-dev
libqt4-core
libqt4-gui
...etc

Upvotes: 6

Related Questions