Use lowercase for Windows header for supporting cross-compilation

Linux mingw uses lowercase headers, so cross-building on Linux for Windows
target must use the correct form. Windows is case-insensitive, so it won't
affect host-native builds.

Change-Id: Ic2140412bb367bbce83b5e2546d70e0936928c5c
Reviewed-by: André Hartmann <aha_1980@gmx.de>
Reviewed-by: David Schulz <david.schulz@qt.io>
This commit is contained in:
Orgad Shaneh
2021-09-24 17:07:56 +03:00
committed by Orgad Shaneh
parent a4141b8d14
commit f2f1fc8601
7 changed files with 7 additions and 7 deletions

View File

@@ -54,7 +54,7 @@
#include <QFileDialog>
#ifdef Q_OS_WIN
#include <Windows.h>
#include <windows.h>
#endif
using namespace ProjectExplorer;