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. Target pattern error (Qt4.85 on Mojave 10.14.6)
Forum Updated to NodeBB v4.3 + New Features

Target pattern error (Qt4.85 on Mojave 10.14.6)

Scheduled Pinned Locked Moved Solved General and Desktop
24 Posts 2 Posters 2.9k 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.
  • M Offline
    M Offline
    marvic
    wrote on last edited by marvic
    #14

    Made the build directory and project directory same, now door is different.

    /usr/local/bin/uic mainwindow.ui -o ui_mainwindow.h
    make: /usr/local/bin/uic: No such file or directory
    make: *** [ui_mainwindow.h] Error 1
    09:16:04: The process "/usr/bin/make" exited with code 2.
    Error while building/deploying project One (kit: 4.85)
    When executing step "Make"
    

    Copied the pic in /usr/local/bin, Now, I get.

    /Users/vm/Documents/Qt-Apps/One/mainwindow.h:4: error: 'QMainWindow' file not found
    #include <QMainWindow>
             ^~~~~~~~~~~~~
    

    Tried with , this also same error.

    #include <QtGui/QMainWindow>
    
    1 Reply Last reply
    0
    • M Offline
      M Offline
      marvic
      wrote on last edited by marvic
      #15

      How set these paths, using qmake?

      QT_INSTALL_LIBS
      QT_INSTALL_HEADERS
      

      This also

      ld: library not found for -lQtGui
      
      1 Reply Last reply
      0
      • SGaistS Offline
        SGaistS Offline
        SGaist
        Lifetime Qt Champion
        wrote on last edited by
        #16

        Your Qt installation seems to be broken. Are you sure you selected the correct package from brew ?

        Interested in AI ? www.idiap.ch
        Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

        M 2 Replies Last reply
        0
        • SGaistS SGaist

          Your Qt installation seems to be broken. Are you sure you selected the correct package from brew ?

          M Offline
          M Offline
          marvic
          wrote on last edited by
          #17

          @SGaist Yes, it's broken, installed using this command brew install cartr/qt4/qt@4

          Tried to compile source code 4.8.7, but it is not compiling on Mojave.

          1 Reply Last reply
          0
          • SGaistS SGaist

            Your Qt installation seems to be broken. Are you sure you selected the correct package from brew ?

            M Offline
            M Offline
            marvic
            wrote on last edited by
            #18

            @SGaist
            The app is based on Phonon API, Need to run on Mojave.
            This app gives Segmentation fault 11 error, crashes on Mojave.
            This app source code need to recompile on Mojave to run.

            1 Reply Last reply
            0
            • SGaistS Offline
              SGaistS Offline
              SGaist
              Lifetime Qt Champion
              wrote on last edited by
              #19

              Did you check what this segmentation fault is about ?

              Interested in AI ? www.idiap.ch
              Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

              M 1 Reply Last reply
              0
              • SGaistS SGaist

                Did you check what this segmentation fault is about ?

                M Offline
                M Offline
                marvic
                wrote on last edited by marvic
                #20

                @SGaist
                $ ./randomimage
                "Creating tile at index 0"
                2020-12-26 15:55:10.821 randomimage[1161:44993] modalSession has been exited prematurely - check for a reentrant call to endModalSession:
                "MediaTile::setMediaName: /Users/vk/Downloads/one/randomimage.app/Contents/Frameworks/QtGui.framework/Versions/4/QtGui"
                Segmentation fault: 11

                Do you think tweak is possible or Phonon4Qt5 will help in porting.

                Able to compiled Phonon4Qt5 on Mojave, in .pro added

                QT       += core gui phonon4qt5
                LIBS +=  /Users/vk/Documents/port-qt4/phonon-master/build5/bin
                INCLUDEPATH += /Users/vk/Documents/port-qt4/phonon-master/phonon
                

                but raised error,
                Project ERROR: Unknown module(s) in QT: phonon4qt5

                1 Reply Last reply
                0
                • M Offline
                  M Offline
                  marvic
                  wrote on last edited by marvic
                  #21

                  @SGaist
                  After changing the lib, include paths and with qt_phonon4qt5.pri coping to modules.

                  able to compile, but it crashes,

                  This is happing because of

                   QKeySequence key = shortcut_it.key();
                  
                          // Connect every shortcut with the setFocus slot, to ensure proper focus.
                          connect( shortcut, SIGNAL( activated() ), this , SLOT( setFocus() ), Qt::UniqueConnection );
                  
                          switch ( key )
                  
                  /src/main/mainwindow.cpp:223: error: statement requires expression of integer type ('QKeySequence' invalid)
                          switch ( key )
                          ^        ~~~
                  
                  1 Reply Last reply
                  0
                  • SGaistS Offline
                    SGaistS Offline
                    SGaist
                    Lifetime Qt Champion
                    wrote on last edited by
                    #22

                    That's invalid C++ code. You cannot switch on a type like that.

                    What do the cases contain ?

                    Interested in AI ? www.idiap.ch
                    Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                    M 1 Reply Last reply
                    0
                    • SGaistS SGaist

                      That's invalid C++ code. You cannot switch on a type like that.

                      What do the cases contain ?

                      M Offline
                      M Offline
                      marvic
                      wrote on last edited by marvic
                      #23

                      @SGaist
                      This works fine on older version, On Win7 worked without error

                              QShortcut* shortcut = shortcut_it.value().get();
                              QKeySequence key = shortcut_it.key();
                      
                              switch ( key )
                              {
                                  case Qt::Key_F:
                                      connect( shortcut, SIGNAL( activated() ), this , SLOT( on_actionFull_Screen_triggered() ) );
                                      break;
                      
                                  case Qt::Key_Escape:
                                      connect( shortcut, SIGNAL( activated() ), this , SLOT( on_actionExit_triggered() ) );
                                      break;
                      
                                  default
                                          :
                                      break;
                              }
                      
                      1 Reply Last reply
                      0
                      • SGaistS Offline
                        SGaistS Offline
                        SGaist
                        Lifetime Qt Champion
                        wrote on last edited by
                        #24

                        That was just luck. The current error you get is correct.

                        Interested in AI ? www.idiap.ch
                        Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                        1 Reply Last reply
                        0

                        • Login

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