Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. Build QtDeclarative for Qt5.9.9
Qt 6.11 is out! See what's new in the release blog

Build QtDeclarative for Qt5.9.9

Scheduled Pinned Locked Moved Unsolved General and Desktop
4 Posts 2 Posters 1.2k Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • C Offline
    C Offline
    Creatorczyk
    wrote on last edited by
    #1

    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?

    JKSHJ 1 Reply Last reply
    0
    • C Creatorczyk

      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?

      JKSHJ Offline
      JKSHJ Offline
      JKSH
      Moderators
      wrote on last edited by
      #2

      @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, not Qt 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.

      Qt Doc Search for browsers: forum.qt.io/topic/35616/web-browser-extension-for-improved-doc-searches

      C 1 Reply Last reply
      1
      • JKSHJ JKSH

        @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, not Qt 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.

        C Offline
        C Offline
        Creatorczyk
        wrote on last edited by
        #3

        @JKSH My old project require QDeclarative because I used quick1, I need build QDeclarative

        JKSHJ 1 Reply Last reply
        0
        • C Creatorczyk

          @JKSH My old project require QDeclarative because I used quick1, I need build QDeclarative

          JKSHJ Offline
          JKSHJ Offline
          JKSH
          Moderators
          wrote on last edited by
          #4

          @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.

          Qt Doc Search for browsers: forum.qt.io/topic/35616/web-browser-extension-for-improved-doc-searches

          1 Reply Last reply
          1

          • Login

          • Login or register to search.
          • First post
            Last post
          0
          • Categories
          • Recent
          • Tags
          • Popular
          • Users
          • Groups
          • Search
          • Get Qt Extensions
          • Unsolved