diff options
author | Orgad Shaneh <orgad.shaneh@audiocodes.com> | 2021-09-24 17:07:56 +0300 |
---|---|---|
committer | Orgad Shaneh <orgads@gmail.com> | 2021-09-27 07:23:22 +0000 |
commit | f2f1fc860192367533cf91b37f5eed262bd745da (patch) | |
tree | 087986a1092324a5714369df1b8b5fa4ea028662 /tests/manual/cplusplus-tools/main.cpp | |
parent | a4141b8d14664554048faf2a9a9160f29f0069ec (diff) | |
download | qt-creator-f2f1fc860192367533cf91b37f5eed262bd745da.tar.gz |
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>
Diffstat (limited to 'tests/manual/cplusplus-tools/main.cpp')
-rw-r--r-- | tests/manual/cplusplus-tools/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/manual/cplusplus-tools/main.cpp b/tests/manual/cplusplus-tools/main.cpp index da625df65f..4a2a26533f 100644 --- a/tests/manual/cplusplus-tools/main.cpp +++ b/tests/manual/cplusplus-tools/main.cpp @@ -31,7 +31,7 @@ #include <iostream> #include <vector> #include <cstdio> -//#include <Windows.h> +//#include <windows.h> //#include <linux/version.h> #include "dummy.h" #include "detail/header.h" |