Integrate Client class into Project
-
Hi,
I try to integrate following client Programm into my Qt-Project:http://code.google.com/p/tiy/downloads/detail?name=tiy_client-0.1.zip&can=2&q=
My goal is to get the data that the client receives (so i wanted to integrate it into my Qt Project). But I don't know how to do it.
I am using QT with the MinGW compiler on my Windows 8.1 computer.
-
Hi,
The standard way is to build the library, then add something like:
@
INCLUDEPATH += C:/path/to/tiy/includes
LIBS += -lC:/path/to/tiy/libs
-Ltiy
@And use it in your software