View Single Post
Posts: 190 | Thanked: 129 times | Joined on Mar 2010 @ Bavaria, Germany
#5
Originally Posted by Krumpir View Post
Thanks for the replies, is it neccessary to use the libconic api at all then? And if someone knows where to add the conic include and/or lib folders i would very much appreciate it i will also look into the qt sdk stuff.
conic is like QtMobility bearer management. It's there to determine if your phone is connected and how. So if it says "you're not connected", your connect() calls may time out as the user gets asked first if he wants to connect to some network.

You should use pkg-config for the headers and libs.

When using qmake, add this to your .pro file:
Code:
CONFIG += link_pkgconfig
PKGCONFIG += conic
When not using qmake:
"pkg-config --cflags conic" puts out the header includes
"pkg-config --lflags conic" puts out the linker settings
 

The Following 2 Users Say Thank You to gri For This Useful Post: