diff options
author | Brad King <brad.king@kitware.com> | 2016-04-29 13:40:20 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-04-29 17:58:31 (GMT) |
commit | 180538c70634dd6dc7fc68b4afbc1cd288c5b5c6 (patch) | |
tree | 5467b11d2718a4f0b7f32248466a38403df84d6c /Source/QtDialog/QCMake.h | |
parent | 0e7bca923e65df8fda37dd50ca68c7207eb3acbe (diff) | |
download | CMake-180538c70634dd6dc7fc68b4afbc1cd288c5b5c6.zip CMake-180538c70634dd6dc7fc68b4afbc1cd288c5b5c6.tar.gz CMake-180538c70634dd6dc7fc68b4afbc1cd288c5b5c6.tar.bz2 |
Source: Stabilize include order
Each source file has a logical first include file. Include it in an
isolated block so that tools that sort includes do not move them.
Diffstat (limited to 'Source/QtDialog/QCMake.h')
-rw-r--r-- | Source/QtDialog/QCMake.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/QtDialog/QCMake.h b/Source/QtDialog/QCMake.h index 8942e7c..ca6f0f4 100644 --- a/Source/QtDialog/QCMake.h +++ b/Source/QtDialog/QCMake.h @@ -12,6 +12,9 @@ #ifndef QCMake_h #define QCMake_h + +#include "cmake.h" + #ifdef _MSC_VER #pragma warning ( disable : 4127 ) #pragma warning ( disable : 4512 ) @@ -27,8 +30,6 @@ #include <QMetaType> #include <QAtomicInt> -#include "cmake.h" - /// struct to represent cmake properties in Qt /// Value is of type String or Bool struct QCMakeProperty |