Compiling OpenCV opencv_world with Qt - unresolved externals

Multi tool use
Compiling OpenCV opencv_world with Qt - unresolved externals
I want to compile OpenCV (3.4) with Qt (5.11) (with setting CMake-option WITH_QT and setting Qt5*_DIR paths). The source codes were freshly downloaded from github or Qt-Website. The Solution folder for VC14 is created with the latest CMake.
If I compile it with VC14 (Visual Studio 2015 C++) it perfectly compiles and links the single modules.
But if I also choose the CMake-option BUILD_opencv_world I get unendless (226) linking errors: "unresolved external symbol ...". All of them related to the project opencv_world.
If I remove the CMake-option "WITH_QT" I also can create the opencv_world files.
What do I make wrong?
Below just a the first entries of the error list:
Severity Code Description Project File Line Suppression State
Error LNK1120 226 unresolved
externals opencv_world D:LIBSopencv-make-VC14binDebugopencv_world341d.dll 1
Error LNK2001 unresolved external symbol "public: static struct
QMetaObject const cvv::qtutil::MatchScene::staticMetaObject"
(?staticMetaObject@MatchScene@qtutil@cvv@@2UQMetaObject@@B) opencv_world D:LIBSopencv-make-VC14modulesworldmatchscene.obj 1
Error LNK2001 unresolved external symbol "public: static struct
QMetaObject const cvv::qtutil::SignalQString::staticMetaObject"
(?staticMetaObject@SignalQString@qtutil@cvv@@2UQMetaObject@@B) opencv_world D:LIBSopencv-make-VC14modulesworldmatchsettingsselector.obj 1
Error LNK2001 unresolved external symbol "public: static struct
QMetaObject const cvv::qtutil::SignalQString::staticMetaObject"
(?staticMetaObject@SignalQString@qtutil@cvv@@2UQMetaObject@@B) opencv_world D:LIBSopencv-make-VC14modulesworlddual_filter_view.obj 1
Error LNK2001 unresolved external symbol "public: static struct
QMetaObject const cvv::qtutil::SignalQString::staticMetaObject"
(?staticMetaObject@SignalQString@qtutil@cvv@@2UQMetaObject@@B) opencv_world D:LIBSopencv-make-VC14modulesworldsinglefilterview.obj 1
Error LNK2001 unresolved external symbol "public: static struct
QMetaObject const cvv::qtutil::SignalQString::staticMetaObject"
(?staticMetaObject@SignalQString@qtutil@cvv@@2UQMetaObject@@B) opencv_world D:LIBSopencv-make-VC14modulesworldview_controller.obj 1
Error LNK2001 unresolved external symbol "public: static struct
QMetaObject const cvv::qtutil::SignalQString::staticMetaObject"
(?staticMetaObject@SignalQString@qtutil@cvv@@2UQMetaObject@@B) opencv_world D:LIBSopencv-make-VC14modulesworldkeypointselectionselector.obj 1
Error LNK2001 unresolved external symbol "public: static struct
QMetaObject const cvv::qtutil::SignalQString::staticMetaObject"
(?staticMetaObject@SignalQString@qtutil@cvv@@2UQMetaObject@@B) opencv_world D:LIBSopencv-make-VC14modulesworldkeypointsettingsselector.obj 1
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.