diff --git a/config_help.txt b/config_help.txt index db9587dd20..e981eba411 100644 --- a/config_help.txt +++ b/config_help.txt @@ -126,7 +126,6 @@ Build options: -qtnamespace .. Wrap all Qt library code in 'namespace {...}'. -qtlibinfix .. Rename all libQt5*.so to libQt5*.so. - -qtlibinfix-plugins .. Rename Qt plugins according to -qtlibinfix [no] -testcocoon .......... Instrument with the TestCocoon code coverage tool [no] -gcov ................ Instrument with the GCov code coverage tool [no] diff --git a/configure.cmake b/configure.cmake index ce527743d5..2f5d320f62 100644 --- a/configure.cmake +++ b/configure.cmake @@ -827,12 +827,6 @@ qt_feature("libudev" PRIVATE LABEL "udev" CONDITION Libudev_FOUND ) -qt_feature("qt_libinfix_plugins" - LABEL "Use QT_LIBINFIX for Plugins" - AUTODETECT OFF - ENABLE ( NOT INPUT_qt_libinfix STREQUAL '' ) AND INPUT_qt_libinfix_plugins STREQUAL 'yes' -) -qt_feature_config("qt_libinfix_plugins" QMAKE_PRIVATE_CONFIG) qt_feature("compile_examples" LABEL "Compile examples" AUTODETECT NOT WASM diff --git a/configure.json b/configure.json index fee86ede81..21b9b29fdf 100644 --- a/configure.json +++ b/configure.json @@ -109,7 +109,6 @@ "profile": "boolean", "qreal": "string", "qtlibinfix": { "type": "string", "name": "qt_libinfix" }, - "qtlibinfix-plugins": { "type": "boolean", "name": "qt_libinfix_plugins" }, "qtnamespace": { "type": "string", "name": "qt_namespace" }, "reduce-exports": { "type": "boolean", "name": "reduce_exports" }, "reduce-relocations": { "type": "boolean", "name": "reduce_relocations" }, @@ -1365,12 +1364,6 @@ "condition": "libs.libudev", "output": [ "privateFeature" ] }, - "qt_libinfix_plugins": { - "label": "Use QT_LIBINFIX for Plugins", - "autoDetect": false, - "enable": "input.qt_libinfix != '' && input.qt_libinfix_plugins == 'yes'", - "output": [ "privateConfig" ] - }, "compile_examples": { "label": "Compile examples", "autoDetect": "!config.wasm", diff --git a/mkspecs/features/qt_plugin.prf b/mkspecs/features/qt_plugin.prf index 573d717eea..78b210a00c 100644 --- a/mkspecs/features/qt_plugin.prf +++ b/mkspecs/features/qt_plugin.prf @@ -91,8 +91,7 @@ CONFIG(static, static|shared)|prefix_build { target.path = $$[QT_INSTALL_PLUGINS]/$$PLUGIN_TYPE INSTALLS += target -qt_libinfix_plugins: TARGET = $$TARGET$$QT_LIBINFIX -TARGET = $$qt5LibraryTarget($$TARGET, "plugins/$$PLUGIN_TYPE/") +TARGET = $$qt5LibraryTarget($$TARGET$$QT_LIBINFIX, "plugins/$$PLUGIN_TYPE/") CONFIG += create_cmake