Thanks for your reply.
Can’t ask the Qt forums since my question is related to VisualGDB because:
In the Linux project wizard I can choose “Application (executable file)”:
- Use MSBuild
- Use GNU Make
- Use CMake
- Use Qt
I have chosen “Qt” for one project and “GNU Make” for the other.
<span style=”text-decoration: underline;”>Background:</span> I share some sources between the two VisualGDB projects (one with Qt, the other without).
For the moment I’ve added a preprocessor macro QT_PRESENCE to the VisualGDB settings and in the shared header/source files I do something like this:
#ifdef QT_PRESENCE
#include "Something that is using Qt"
#endif
To put my question in other words: How can I determine the “application type”?