Build QtDeclarative for Qt5.9.9
-
Hi,
I installed Qt5.9.9 from archive by instalator on Windows. But I want build QDeclarative too, so I opened MinGw5.3.0 32-bit and type:
cd C:\Qt\Qt5.9.9\5.9.9\Src\qtdeclarative qmake -r mingw32-make mingw32-make install
Everything went without errors, but when I want use QtDeclarative
QT += core gui declarative
I got error:
error: Unknown module(s) in QT: declarative
What else do i need to do to be able to use QtDeclarative?
-
Hi,
I installed Qt5.9.9 from archive by instalator on Windows. But I want build QDeclarative too, so I opened MinGw5.3.0 32-bit and type:
cd C:\Qt\Qt5.9.9\5.9.9\Src\qtdeclarative qmake -r mingw32-make mingw32-make install
Everything went without errors, but when I want use QtDeclarative
QT += core gui declarative
I got error:
error: Unknown module(s) in QT: declarative
What else do i need to do to be able to use QtDeclarative?
@Creatorczyk said in Build QtDeclarative for Qt5.9.9:
error: Unknown module(s) in QT: declarative
What else do i need to do to be able to use QtDeclarative?
The module name is
Qt Quick
, notQt Declarative
.QT += core gui quick
I want build QDeclarative too
It is already part of the installation. You don't need to build it yourself
Qt5.9.9
May I ask why? Qt 5.9 reached end-of-life in May 2020.
-
@Creatorczyk said in Build QtDeclarative for Qt5.9.9:
error: Unknown module(s) in QT: declarative
What else do i need to do to be able to use QtDeclarative?
The module name is
Qt Quick
, notQt Declarative
.QT += core gui quick
I want build QDeclarative too
It is already part of the installation. You don't need to build it yourself
Qt5.9.9
May I ask why? Qt 5.9 reached end-of-life in May 2020.
@JKSH My old project require QDeclarative because I used quick1, I need build QDeclarative
-
@JKSH My old project require QDeclarative because I used quick1, I need build QDeclarative
@Creatorczyk said in Build QtDeclarative for Qt5.9.9:
@JKSH My old project require QDeclarative because I used quick1, I need build QDeclarative
Qt Quick 1 was removed in Qt 5.6.
If you want to build it, you must download the code from qtquick1.git separately: https://code.qt.io/cgit/qt/qtquick1.git/
C:\Qt\Qt5.9.9\5.9.9\Src\qtdeclarative contains Qt Quick 2.