PDA

View Full Version : Configuring problem in Qt Creator



cdass01
18th July 2017, 17:46
While trying to configure my file following problem is arising. How to solve this problem?


*********************************************

The system cannot find the path specified.
The system cannot find the path specified.
Could not find qmake configuration file default.
Error while parsing file E:\Bridge-Improvements\OriginalData\bridge-client\bridge.pro. Giving up.
Project ERROR: Unknown module(s) in QT: declarative

d_stranz
18th July 2017, 20:10
The system cannot find the path specified.

You are trying to read, write, or run a file or program where 1) the file doesn't exist, 2) the directory is wrong, 3) you don't have permission, or 4) the argument isn't being correctly interpreted by the command processor.

A common cause of this is having a path with spaces in it; the command line will treat that as two separate arguments. If this is in a configuration file of some sort, you must enclose the whole path in double quotes: "C:\Path To My Program\My Program.exe"


Project ERROR: Unknown module(s) in QT: declarative

You are trying to use Qt 5 to build a Qt Quick program developed using Qt 4.8. See this. (https://doc.qt.io/qt-5/qtquick-porting-qt5.html)