qmake: Include own header first

cpp files should include their own headers first (but below config.h)

Change-Id: I10ef37854843ae6438d68f96ce5ee83eede33db5
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
This commit is contained in:
Sergio Ahumada 2012-09-15 15:34:17 +02:00 committed by Qt by Nokia
parent 54b899f448
commit 89b12da2ef
2 changed files with 3 additions and 2 deletions

View File

@ -39,8 +39,9 @@
**
****************************************************************************/
#include "msvc_objectmodel.h"
#include "msbuild_objectmodel.h"
#include "msvc_objectmodel.h"
#include "msvc_vcproj.h"
#include "msvc_vcxproj.h"
#include <qstringlist.h>

View File

@ -40,10 +40,10 @@
****************************************************************************/
#include "qmakeevaluator.h"
#include "qmakeevaluator_p.h"
#include "qmakeglobals.h"
#include "qmakeparser.h"
#include "qmakeevaluator_p.h"
#include "ioutils.h"
#include <qbytearray.h>