Fix qmake user projects for QT_LIBINFIX builds on Windows/iOS
QMake user projects could not be built on Windows or iOS if Qt was configured with QT_LIBINFIX set. The code that generates qt_lib_entrypoint_private.pri file did not take into account the lib infix. Pick-to: 6.1 6.0 Fixes: QTBUG-91511 Change-Id: Ibc40548a269238320f8f89a710d10e7f639246cb Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
This commit is contained in:
parent
d6367aca86
commit
7b4507d0be
@ -94,7 +94,7 @@ if(using_entrypoint_library)
|
|||||||
set_target_properties(EntryPoint PROPERTIES
|
set_target_properties(EntryPoint PROPERTIES
|
||||||
INTERFACE_QT_MODULE_PRI_EXTRA_CONTENT "
|
INTERFACE_QT_MODULE_PRI_EXTRA_CONTENT "
|
||||||
QT.entrypoint_implementation.name = QtEntryPointImplementation
|
QT.entrypoint_implementation.name = QtEntryPointImplementation
|
||||||
QT.entrypoint_implementation.module = Qt6EntryPoint
|
QT.entrypoint_implementation.module = Qt6EntryPoint${QT_LIBINFIX}
|
||||||
QT.entrypoint_implementation.ldflags = ${entrypoint_implementation_ldflags}
|
QT.entrypoint_implementation.ldflags = ${entrypoint_implementation_ldflags}
|
||||||
QT.entrypoint_implementation.libs = $$QT_MODULE_LIB_BASE
|
QT.entrypoint_implementation.libs = $$QT_MODULE_LIB_BASE
|
||||||
QT.entrypoint_implementation.module_config = staticlib v2 internal_module
|
QT.entrypoint_implementation.module_config = staticlib v2 internal_module
|
||||||
|
Loading…
x
Reference in New Issue
Block a user