pre-compiled QT headers
-
I want to pre-compile headers, lets say #include <QApplication>
same as described in video below
https://www.youtube.com/watch?v=a6PdfwVE9hAPlease guide me with simple steps
-
I want to pre-compile headers, lets say #include <QApplication>
same as described in video below
https://www.youtube.com/watch?v=a6PdfwVE9hAPlease guide me with simple steps
What's so hard about creating a PCH file like
// myApp_pch.h #include <QApplication> #include <QWidget>and then enable the PCH support depending on your build system?!
BTW: The video even explains how to set this up... so what do you mean?!