QtQuick 2 controls aren't visible in QML-designer after Qt static building
-
I built a static version of Qt 5.13.1 with all submodules (one big archive "qt-everywhere") using msvc-2019 compiler with this command line:
configure.bat^
-prefix "..."^
-opensource -confirm-license^
-platform win32-msvc -mp -c++std c++2a^
-debug -strip^
-sse2 -sse3 -ssse3 -sse4.1 -sse4.2 -avx -avx2 -avx512^
-opengl dynamic -direct2d^
-static -static-runtime -no-shared^
-qt-zlib -qt-libjpeg -qt-libpng -qt-freetype -qt-tiff -qt-pcre^
-gif -ico^
-qt3d-simd sse2^
-gui -widgets^
-plugin-manifests^
-nomake tests -nomake examples -make tools -make libs^
-skip qtconnectivity -skip qtgamepad -skip qtlocation -skip qtscript -skip qtserialbus -skip qtserialport -skip qtsensors -skip qtspeech -skip qtvirtualkeyboard^
-ssl -openssl -openssl-linked^
OPENSSL_INCDIR="..."^
OPENSSL_LIBDIR="...."^
OPENSSL_LIBS="-llibssl -llibcrypto -lzlibstat -lWs2_32 -lGdi32 -lAdvapi32 -lCrypt32 -lUser32"^
-recheck-all -vBut after installing I have only QtQuick 1 controls in the QML Designer.
I imported all available modules, but none of them appears in a QML Types tab!
But all examples using these modules are builds and works successfully...So, what am I doing wrong? How to import all QML modules to the QML Designer in the QtCreator?