Qt 5.7.0 error after fresh install
-
Hi
I have done a fresh install of Qt 5.7.0 mingw version in windows with the online installer. I get the following error but it still builds the application.
Starting: "C:\Qt\5.7\mingw53_32\bin\qmake.exe" C:......\test.pro -spec win32-g++ "CONFIG+=debug" "CONFIG+=qml_debug"
The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.Any possible solution ?
-
Ya .. It works with 5.6.1 though!!
.pro file
#------------------------------------------------- # # Project created by QtCreator 2016-09-30T09:28:36 # #------------------------------------------------- QT += core gui quickwidgets qml quick location location-private positioning-private xml greaterThan(QT_MAJOR_VERSION, 4): QT += widgets printsupport network sql opengl svg TARGET = MapTest TEMPLATE = app SOURCES += main.cpp\ mainwindow.cpp HEADERS += mainwindow.h FORMS += mainwindow.ui
-
@saitej said in Qt 5.7.0 error after fresh install:
QT += core gui quickwidgets qml quick location location-private positioning-private xml
Why do you have so many Qt modules? Do you really need all of them?
-
@saitej You could try to call qmake manually with -d parameter to get more debug output. Maybe you then will see what actually is not found.
C:\Qt\5.7\mingw53_32\bin\qmake.exe" -d C:......\test.pro -spec win32-g++ "CONFIG+=debug" "CONFIG+=qml_debug