What does the DEFINES += includthisvariable do in QT for a .pro file?
If it works like the #define in C++, where is includethisvariable defined so that the preprocessor can replace includethisvariable with the value I set?
I understand what #define does in c++ because you set the value beside what you define. However here it seems like you just list a name...The QT docs didn't help explain this for me.