Hi All,
I have moved all my header inclusions from cpp files in project to precompiled header. In such case Intellisense or autocomplete does not work for identifiers declared/defined in those headers. Compiling works absolutely fine because of following code in .pro file:
CONFIG += precompile_header
PRECOMPILED_HEADER = Precompiled.h
precompile_header:!isEmpty(PRECOMPILED_HEADER) {
DEFINES += USING_PCH
}
Can someone suggest how to make it work without having to move the headers back in respective cpp files.
Thank you,
Best Regards.
↧