summaryrefslogtreecommitdiffstats
path: root/tests/manual
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2021-04-23 09:30:43 +0300
committerMartin Storsjö <martin@martin.st>2021-04-23 14:31:04 +0300
commit236ae73ed8c8eef3740a93ef18dc31ae9a7f2d79 (patch)
treec6bdb60e64685b28f78a8bcdb31e8b5f13a54660 /tests/manual
parent0a1256a52d8c6c1b85a10f7dc94dfc34e3540040 (diff)
Lowercase system includes and lib names for Windows, fix cross compiling
When cross compiling from a case sensitive file system, casing matters, and mingw headers and import libraries consistently use lowercase. This was uncovered by d385158d5213ef568b7629e2aa4a818016bbffac; prior to that, the schannel TLS plugin didn't end up built (at least when cross compiling). Fix other similar cases that can be found by grepping the repo. Change-Id: Ia696e17b7aaa979d7b7f5b0801383f338a8b585b Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>
Diffstat (limited to 'tests/manual')
-rw-r--r--tests/manual/qcursor/qcursorhighdpi/CMakeLists.txt2
-rw-r--r--tests/manual/qcursor/qcursorhighdpi/qcursorhighdpi.pro2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/manual/qcursor/qcursorhighdpi/CMakeLists.txt b/tests/manual/qcursor/qcursorhighdpi/CMakeLists.txt
index 99114a0514..60f4c03c18 100644
--- a/tests/manual/qcursor/qcursorhighdpi/CMakeLists.txt
+++ b/tests/manual/qcursor/qcursorhighdpi/CMakeLists.txt
@@ -22,5 +22,5 @@ qt_internal_add_manual_test(qcursorhighdpi
qt_internal_extend_target(qcursorhighdpi CONDITION WIN32
PUBLIC_LIBRARIES
- User32
+ user32
)
diff --git a/tests/manual/qcursor/qcursorhighdpi/qcursorhighdpi.pro b/tests/manual/qcursor/qcursorhighdpi/qcursorhighdpi.pro
index b0a5a75a67..309a756532 100644
--- a/tests/manual/qcursor/qcursorhighdpi/qcursorhighdpi.pro
+++ b/tests/manual/qcursor/qcursorhighdpi/qcursorhighdpi.pro
@@ -2,4 +2,4 @@ TEMPLATE = app
QT = core gui gui-private core-private widgets
CONFIG -= app_bundle
SOURCES += main.cpp
-win32: LIBS += -lUser32
+win32: LIBS += -luser32