You are not logged in.

Dear visitor, welcome to QtForum.org. If this is your first visit here, please read the Help. It explains in detail how this page works. To use all features of this page, you should consider registering. Please use the registration form, to register here or read more information about the registration process. If you are already registered, please login here.

1

Thursday, March 1st 2012, 9:57am

QT Creator - installing additional modules

Hello,
I am new to Qt and just finished some beginner tutorials. I am using Ubuntu and first i installed Qt creator from .deb package.
Now i want my application to use ssh connection and i found this http://doc.qt.nokia.com/qtcreator-extend…connection.html but when realised that <Utils/SshConnection> doesnt exists i installed QT creator from source from git http://qt.gitorious.org/qt-creator/qt-creator
Well, after successfull install i still cannot find any SSH or Utils libs so I rebuild it with:

Source code

1
qmake -recursive "QT_PRIVATE_HEADERS=/usr/include/qt4/" ../../QT_CREATOR_GIT/qt-creator/qtcreator.pro

and then:

Source code

1
make -B && make install

The result is loong compilation where i saw that all ssh* source files were compiled. Then i found libUtils.so.1.0.0 in /lib/qtcreator/ but i still cant find any SSH header .
How to add those additional components?
Do i need to install QTCreator from source or it could be included additionaly?
Do i need to change qtcreator.pro to include Utils?
Thanks!

Similar threads