Using QtCreator's Utils module
-
Hi
I don't know how to use utils module in my program ( http://doc.qt.digia.com/qtcreator-extending/utils.html)
for Example if I need to use SshConnection class in my program just simply get a copy it's source file (here ) and copy in my project directory? does'n need add any module to .pro file?
I dont have so much Experience in qt .
thank u guy -
Hi and welcome to devnet,
From a quick look, you would also need the botan 3rdparty (also provided in Qt Creator's sources)
-
@SGaist said:
botan 3rdparty
thank you SGaist
I don't understand . why i need botan 3rd party library while i' going to use sshConnection class in other library ?
tell me if i am wrong. I should find sshConnection class and maybe some related class from qssh library and copy them in my project directory and simply include SshConnection to my project and use function in my program . -
Are you going to link against that module or rebuild its code with your own project ?
Take a look at the pro files from the module, you'll see that botan is listed as 3rdparty
-
Are you going to link against that module or rebuild its code with your own project ?
Take a look at the pro files from the module, you'll see that botan is listed as 3rdparty
@SGaist thanks a lot .
I got your point and actually i'm in trouble with this botan library
how can i use botan in my project?
i tried use this tutorial to compile and use botan . but i didnt find botan setup for windows and botan.pro in source directory ( instead i find botan.pri )
thank u again