Building Qt Creator for windows 10
-
@fryn3 said in Building Qt Creator for windows 10:
Please tell me where I had to enter make install
in the same place you called make.
"Yes, I have installed Qt Creator (MSVC 2015, 32 bit), I need a build for MinGW." - so, you now try to overwrite QtCreator built with MSVC 2015 with your own build?! This, for sure, is not going to work. You're mixing your own binaries with Qt libs built with MSVC 2015.
Do "make install" and start it from there.May I ask you why you need QtCreator built with MinGW?
-
@fryn3 said in Building Qt Creator for windows 10:
@jsulm can't find comand
make
.qmake path_to_source\qtcreator.pro mingw32-make -j4 mingw32-make install
I need QtCreator built with MinGW for making own widgets.
No you don't. You can use prebuilt Qt Creator with any Qt version: both MinGW and MSVC work.
-
@fryn3 said in Building Qt Creator for windows 10:
Please tell me where I had to enter make install
in the same place you called make.
"Yes, I have installed Qt Creator (MSVC 2015, 32 bit), I need a build for MinGW." - so, you now try to overwrite QtCreator built with MSVC 2015 with your own build?! This, for sure, is not going to work. You're mixing your own binaries with Qt libs built with MSVC 2015.
Do "make install" and start it from there.May I ask you why you need QtCreator built with MinGW?
-
@fryn3 said in Building Qt Creator for windows 10:
@sierdzio The video in youtube has instructions for makeing own widgets.
Ah, ok now I understand. You may need your own build of Qt Creator then, indeed.
-
-
@fryn3 Aren't you missing
make install
?
Also, did you already have an installation of QtCreator in C:/Qt/Tools/QtCreator/bin? -
@jsulm I installed. What's next?
When I start qtcreator.exe, I getting same errorsCan't find files:
Qt5Network.dll Qt5Gui.dll Qt5Core.dll Qt5Widgets.dll libgcc_s_dw2-1.dll libstdc++6.dll libwinpthread-1.dll qtcreator.exe - entry point not found
-
@fryn3 Are you sure you're starting the one you built from the location where it was installed?
-
@jsulm absolutely. I built and installed in
C:\QtCreator\build\
. QtCreater(MSVC) installed is inC:\Qt\Tools\QtCreator
.
I'm trying to runC:\QtCreator\build\bin\qtcreator.exe
. -
@jsulm I tried.
- Copy to
C:\QtCreator\build\bin\
- Qt5Network.dll
- Qt5Gui.dll
- Qt5Core.dll
- Qt5Widgets.dll
- I get errors:
Can't find files: libgcc_s_dw2-1.dll, libstdc++6.dll, libwinpthread-1.dll - Copy to
C:\QtCreator\build\bin\
- libgcc_s_dw2-1.dll
- libstdc++6.dll
- libwinpthread-1.dll
- I get error:
Can't find file: Qt5Qml.dll. - Copy to
C:\QtCreator\build\bin\
Qt5Qml.dll file. - I get errors:
qtcreator.exe - entry point not found
- Copy to
-
@jsulm I tried.
- Copy to
C:\QtCreator\build\bin\
- Qt5Network.dll
- Qt5Gui.dll
- Qt5Core.dll
- Qt5Widgets.dll
- I get errors:
Can't find files: libgcc_s_dw2-1.dll, libstdc++6.dll, libwinpthread-1.dll - Copy to
C:\QtCreator\build\bin\
- libgcc_s_dw2-1.dll
- libstdc++6.dll
- libwinpthread-1.dll
- I get error:
Can't find file: Qt5Qml.dll. - Copy to
C:\QtCreator\build\bin\
Qt5Qml.dll file. - I get errors:
qtcreator.exe - entry point not found
@fryn3 You're copying Qt libraries from MinGW Qt you used to build QtCreator, right? Also, did you check where "*make install" installed QtCreator?
You can use this tool to deploy your QtCreator: http://doc.qt.io/qt-5/windows-deployment.html - Copy to