vote up 0 vote down star

I want to create a tiny app which needs global shortcuts. So, I have downloaded the current version of libqxt (0.5.1) and opened as a project in Qt Creator.

Libqxt compiles without problems in this way, so I thought that adding this in the tab Dependencies of my project it would get added automatically in the build, like Eclipse does with JAR libraries (I know that are different IDEs but it seems to be a common feature among them).

What happens? Qt Creator compiles qxt before my project, when needed, but when I want to include its headers Qt Creator keeps warning me that it cannot find them.

Probably I am missing the correct name of headers (I tried the headers showed in qxt documentation: http://doc.libqxt.org/0.5.0/classQxtGlobalShortcut.html)

By the way, I looked the code for global shortcuts and I think I can rip it out and use it in my app as is and I am going to credit qxt team and open the code of my app.

flag
Did you add the Qxt include folder to your INCLUDEPATH qmake variable? – rpg Oct 14 at 13:17
I tried it now, but it doesn't work. I added this in my .pro file: INCLUDEPATH += ~/tmp/libqxt-0.5.1/deploy/include/ It is a bit disappointing because of things like this that are available in other IDEs. If not, what is the use of the Dependencies tab? – I'm Dario Oct 14 at 15:48
Well, I think i will left open this question, but I solved my problem installing the lib in the system (make install). By the way, I changed the path used in my INCLUDEPATH to /home/dario/libqxt-0.5.1/deploy/include/ and it started to find the headers but it fails to compile due to other missing headers used inside. – I'm Dario Oct 14 at 15:58
Look in your deploy/include dir. Do you see any QxtGlobalShortcut there? In my Windows install the header is located inside the QxtGui folder, so you have to #include "QxtGui/QxtGlobalShortcut". – rpg Oct 15 at 8:20
Yes, it is located in where you said. Thanks anyway but while Qt Creator finds the headers, it won't compile with libqxt project. I just installed libqxt and added this on my .pro file: CONFIG += console qxt QXT += core gui Now, it works flawlessly and I'm able to build my app. By the way, Qt Creator is a very nice tool. – I'm Dario Oct 15 at 10:00

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.