Hi.
Good to see someone else is using this library to do things!
If you have installed the Cypress USB Suite 3.4.7. There are files in C:/Cypress/Cypress Suite USB 3.4.7/CyAPI
You want the CyAPI.lib in the lib/x86/ folder (I used the one from x64, which created the problem). Put this in your Qt project directory lib/ then grab all the header files in C:\Cypress\Cypress Suite USB 3.4.7\CyAPI\inc and put them in your project directory inc/ folder
You can then use the code here to link the library to your project:
@
#Add CyAPI lib
win32: LIBS += -L$$PWD/lib/ -lCyAPI
INCLUDEPATH += $$PWD/inc
DEPENDPATH += $$PWD/inc
@
Make sure when you use the library, include <Windows.h> because CyAPI uses a lot of the windows definitions.