Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. QML and Qt Quick
  4. Using C++ Library in QML

Using C++ Library in QML

Scheduled Pinned Locked Moved QML and Qt Quick
17 Posts 4 Posters 10.6k Views
  • 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.
  • sierdzioS Offline
    sierdzioS Offline
    sierdzio
    Moderators
    wrote on last edited by
    #8

    Thanks, that is much better.

    Seems you forgot to include this line:
    @
    INCLUDEPATH += "absolute path of the folder where the files where placed"
    @

    This is probably why you cannot include the file - without include path set, compiler does not "see" the header of qzxing lib.

    (Z(:^

    1 Reply Last reply
    0
    • R Offline
      R Offline
      Ravinder
      wrote on last edited by
      #9

      Now library is added in project but it is given this error on compile time :

      *d:/qt/mingw/bin/../lib/gcc/mingw32/4.4.0/../../../../mingw32/bin/ld.exe: cannot find -lQZXing
      collect2: ld returned 1 exit status
      mingw32-make.exe[1]: *** [debug\QMLBarcodeScanner.exe] Error 1
      mingw32-make.exe: *** [debug] Error 2
      14:38:25: The process "D:\QT\mingw\bin\mingw32-make.exe" exited with code 2.
      Error while building project QMLBarcodeScanner (target: Qt Simulator)
      When executing build step 'Make' *

      1 Reply Last reply
      0
      • sierdzioS Offline
        sierdzioS Offline
        sierdzio
        Moderators
        wrote on last edited by
        #10

        Is the library compiled?

        Also, the wiki seems to differ between -lQZXing and -lQZXing_selfsigned - maybe you are linking against wrong library?

        (Z(:^

        1 Reply Last reply
        0
        • R Offline
          R Offline
          Ravinder
          wrote on last edited by
          #11

          I download the library from here: https://github.com/zxing/zxing and i think this is compiled. And this is my .pro file code :

          symbian{
          LIBS += -lqzxing
          customrules.pkg_prerules =
          ";QZXing"
          "@"$$(EPOCROOT)Epoc32/InstallToDevice/QZXing_selfsigned.sis",(0xE618743C)"
          " "
          DEPLOYMENT += customrules
          }

          win32{
          LIBS += -LC:/QtSDKProjects/QMLBarcodeScanner/Qt_4.7.4_Desktop_Mingw
          -lQZXing
          INCLUDEPATH += "D:\QT\Symbian\SDKs\Symbian3Qt474\epoc32\include"
          }

          and i think u will able to solve it out this time.

          1 Reply Last reply
          0
          • sierdzioS Offline
            sierdzioS Offline
            sierdzio
            Moderators
            wrote on last edited by
            #12

            Whoa! In both INCLUDEPATH and LIBS, you point to Qt installation! Those have to point to files in your QZXing installation (headers/ compiled dlls respectively), so that compiler (and qmake) knows where to fine both the qzxing.h and qzxing.so (or .dll, or .a, depending on platform and a few other things). If your project needs both includes, you can include more paths just like in "SOURCES" calls ("" to break the line, then add another entry)

            (Z(:^

            1 Reply Last reply
            0
            • R Offline
              R Offline
              Ravinder
              wrote on last edited by
              #13

              @ Sierdzio, Thnx for your precious time...i am able to run my project on simulator but not able to run it on my nokia symbian bele (NOKIA 603). It is giving error:

              Error while building project QMLBarcodeScanner (target: Symbian Device) When executing build step 'qmake'

              1 Reply Last reply
              0
              • sierdzioS Offline
                sierdzioS Offline
                sierdzio
                Moderators
                wrote on last edited by
                #14

                Good to know we made some progress, but I am afraid my help will have stop here - I have no experience in developing on Symbian.

                The only thing that comes to my mind is that - maybe - you have to copy the library to the symbian device, too. But that is just a guess, I really don't know anything about Symbian.

                (Z(:^

                1 Reply Last reply
                0
                • R Offline
                  R Offline
                  Ravinder
                  wrote on last edited by
                  #15

                  Hi all,

                  I am able to access QZXing for the simulator . But when it comes for Symbian device it is not accessible
                  I think there is a problem from the symbian target in my .pro file. Below is the code snip shot of my .pro file for symbian is:

                  _ LIBS += -lqzxing
                  customrules.pkg_prerules =
                  ";QZXing"
                  "@"$$(EPOCROOT)Epoc32/InstallToDevice/QZXing_selfsigned.sis",(0xE618743C)"
                  " "
                  DEPLOYMENT += customrules_

                  This declaration is same as given here : https://projects.developer.nokia.com/QZXing/wiki

                  But in my case the the library is not included.

                  Thnx for any help in advance.

                  1 Reply Last reply
                  0
                  • F Offline
                    F Offline
                    favoritas37
                    wrote on last edited by
                    #16

                    Your first problem is that your project folder is in a different disk drive compared to the disk drive that the Symbian SDK is installed. Symbian toolchain requires that the projects built must be in the same drive as the Symbian SDK so first fix that.

                    Moreover the following code is unnecessary when building for Symbian since that path is already included. That is why the project's wiki says to copy the binaries in the epoc32 folder.
                    @
                    INCLUDEPATH += “D:\QT\Symbian\SDKs\Symbian3Qt474\epoc32\include”
                    @

                    One note here is that i am a bit curious on how, as you say, it works for Qt Simulator. I haven't supported it event though it can be done with some modifications.

                    Finally, if you are getting error when qmake is executed this means that there is a syntax error in your .pro file. If you are still experiencing the same error post the .pro but included in the code tags (place a "@" at the beginning and end of the code ).

                    1 Reply Last reply
                    0
                    • F Offline
                      F Offline
                      favoritas37
                      wrote on last edited by
                      #17

                      This thread is continued "here":http://qt-project.org/forums/viewthread/17435/.

                      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