I have a machine running with windows 8.1, the kinect 2.0 for windows (and its SDK), visual studio community, and Qt Creator installed. Right now I am trying to create a small app that pulls the joint data from the kinect and then outputs it in a text form on a GUI created in Qt Creator.
I have the microsoft examples for using the kinect in visual studio, but for creating and using GUI's I would prefer to use Qt Creator as it is what I use for all of my other projects.
My .pro file has the lines:
HEADERS += \
../../../../Program Files/Microsoft SDKs/Kinect/v2.0_1409/inc/Kinect.h \
and
win32: LIBS += -L$$PWD/../../../../Program Files/Microsoft SDKs/Kinect/v2.0_1409/Lib/x64 -lKinect20
INCLUDEPATH += -L$$PWD/../../../../Program Files/Microsoft SDKs/Kinect/v2.0_1409/Lib/x64
DEPENDPATH += -L$$PWD/../../../../Program Files/Microsoft SDKs/Kinect/v2.0_1409/Lib/x64
This gives me the error:
LNK1104: cannot open file 'Files/Microsoft.obj'
what else do I need to be including to get this to work?