Ok.. I think I figured it out bit it only raises more questions but I am sure the answer is a simple one.
Since I changed from Qt Version I had to rebuild Qt Ribbon... ..OK, I got that..
but what I did now know or I forgot about when you remove these lines..
DESTDIR = $$QTITANDIR/bin
DESTDIR = $$member(DESTDIR, 0)$$QTITAN_LIB_PREFIX
The program does not work... I did not want to add these lines because it changes where the program is built.
I had to manually copy these DLL files
qtnribbond4.dll
qtnribbon4.dll
from
I:\Program Files (x86)\Developer Machines\QtitanRibbon\bin
To where the program was being built..
I:\Users\Eaton\Documents\GitHub\qtTrafficBrowser\build-QtTrafficBrowser-Desktop_Qt_5_8_0_MSVC2015_32bit-Debug\debug
Is there anyway to automate this ?
I tired something like this...
C:\Qt\5.8\msvc2015\bin\windeployqt.exe I:\Users\Eaton\Documents\GitHub\qtTrafficBrowser\build-QtTrafficBrowser-Desktop_Qt_5_8_0_MSVC2015_32bit-Debug\Debug\TrafficBrowser.exe
That moved everything except for the needed Qt Ribbon Files..
I would like to link to the .lib files instead like I am currently doing with my other 3rd party files...
I have already tried this with no luck....
LIBS += "I:\Program Files (x86)\Developer Machines\QtitanRibbon\bin" -lqtnribbon4 -lqtnribbond4
INCLUDEPATH += I:/Program Files (x86)/Developer Machines/QtitanRibbon/include
DEPENDPATH += I:/Program Files (x86)/Developer Machines/QtitanRibbon/include
but I get this error...
:-1: error: LNK1104: cannot open file 'I:\Program Files (x86)\Developer Machines\QtitanRibbon.obj'
Is there something I am missing ?
Thanks.