Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>It precisely says, what it needs - the "windows" plugin. It should be located in folder "platforms", as <code>qwindows.dll</code>.</p> <p>You can read more in <a href="http://qt-project.org/doc/qt-5.0/qtdoc/deployment-windows.html" rel="nofollow">Qt5 official windows deployment guide</a>, but rather look on the forums for more practical info, i. e. <a href="http://qt-project.org/forums/viewthread/25714" rel="nofollow">here</a>.</p> <p>In short: to make your application (compiled with Qt built dynamically) run on other machine, you must include many libs with it. All of them should be copied from</p> <pre><code>Qt_installation_folder/Qt_version/used_compiler/bin &amp; Qt_installation_folder/Qt_version/used_compiler/plugins/ </code></pre> <p>QML plugins should be copied from</p> <pre><code>Qt_installation_folder/Qt_version/used_compiler/qml &amp; Qt_installation_folder/Qt_version/used_compiler/imports </code></pre> <p>It is very important to copy Qt libraries from exact the same compiler as used in the project.</p> <p>Below I present you an example (borrowed from <a href="http://qt-project.org/forums/viewthread/25714" rel="nofollow">above second link</a>) with explanations:</p> <pre><code>ROOT FOLDER │ YourApp.exe │ D3DCompiler_43.dll // } \ │ libEGL.dll // } --&gt; If you use Qt built with ANGLE support │ libGLESv2.dll // } / │ │ icudt49.dll // } \ │ icuin49.dll // } --&gt; If you use Qt built with WebKit (Unicode support) │ icuuc49.dll // } / │ │ Qt5Core.dll // --&gt; Basic Qt module, always needed │ Qt5Gui.dll // --&gt; If you use GUI module │ │ Qt5Network.dll // } \ │ Qt5Qml.dll // } --&gt; If you use QML │ Qt5Quick.dll // } --&gt; module │ Qt5V8.dll // } / │ │ Qt5Multimedia.dll // } --&gt; If you use multimedia │ Qt5MultimediaQuick_p.dll // } --&gt; from QtQuick │ ├───platforms │ qwindows.dll // Always needed for windows │ ├───QtMultimedia // If you import QtMultimedia 5.x │ declarative_multimedia.dll │ plugins.qmltypes │ qmldir │ Video.qml │ ├───QtQuick.2 // If you import Qt.Quick 2.x │ plugins.qmltypes │ qmldir │ qtquick2plugin.dll </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload