Skip to content

Commit 351d066

Browse files
committed
CMake: Put the -qtconf argument in front in the qmake wrapper
For QMake's -install argument it's necessary to have -qtconf in front. Task-number: QTBUG-87801 Change-Id: I042acdd143972cc4065660035b02678db891157f Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
1 parent f22644c commit 351d066

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bin/qmake-wrapper-for-target.bat.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
@echo off
2-
@host_qt_bindir@\qmake.exe %* -qtconf "%~dp0\target_qt.conf"
2+
@host_qt_bindir@\qmake.exe -qtconf "%~dp0\target_qt.conf" %*

bin/qmake-wrapper-for-target.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
script_dir_path=`dirname $0`
55
script_dir_path=`(cd "$script_dir_path"; /bin/pwd)`
66

7-
@host_qt_bindir@/qmake $* -qtconf "$script_dir_path/target_qt.conf"
7+
@host_qt_bindir@/qmake -qtconf "$script_dir_path/target_qt.conf" $*

0 commit comments

Comments
 (0)