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. how to add library(qmqtt.h) in qmqtt client for windows
Forum Updated to NodeBB v4.3 + New Features

how to add library(qmqtt.h) in qmqtt client for windows

Scheduled Pinned Locked Moved Solved General and Desktop
59 Posts 7 Posters 30.0k Views 3 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.
  • R raven-worx
    29 Jun 2017, 05:48

    @shravani
    according to this log in the \bin directory.

    S Offline
    S Offline
    shravani
    wrote on 30 Jun 2017, 03:36 last edited by shravani
    #27

    @raven-worx
    thank you very much. now i added that .lib file to .pro file and build all is successful.but as the program start executing im getting this error while debugging.can u please look into it?
    i dont understand which dll file is missing and where to add it?

    0_1498793774462_Capture.PNG

    J 1 Reply Last reply 30 Jun 2017, 04:20
    0
    • S shravani
      30 Jun 2017, 03:36

      @raven-worx
      thank you very much. now i added that .lib file to .pro file and build all is successful.but as the program start executing im getting this error while debugging.can u please look into it?
      i dont understand which dll file is missing and where to add it?

      0_1498793774462_Capture.PNG

      J Offline
      J Offline
      jsulm
      Lifetime Qt Champion
      wrote on 30 Jun 2017, 04:20 last edited by
      #28

      @shravani How do you start the app? From QtCreator?
      On Windows you can use http://www.dependencywalker.com/ to find out which libraries an application needs.
      If you want to start your app outside of QtCreator then you first need to deploy it: http://doc.qt.io/qt-5/windows-deployment.html

      https://forum.qt.io/topic/113070/qt-code-of-conduct

      S 1 Reply Last reply 30 Jun 2017, 04:30
      1
      • J jsulm
        30 Jun 2017, 04:20

        @shravani How do you start the app? From QtCreator?
        On Windows you can use http://www.dependencywalker.com/ to find out which libraries an application needs.
        If you want to start your app outside of QtCreator then you first need to deploy it: http://doc.qt.io/qt-5/windows-deployment.html

        S Offline
        S Offline
        shravani
        wrote on 30 Jun 2017, 04:30 last edited by
        #29

        @jsulm

        im running it in qtcreator, not outside.inside qt also do i need to include?

        J 1 Reply Last reply 30 Jun 2017, 04:33
        0
        • S shravani
          30 Jun 2017, 04:30

          @jsulm

          im running it in qtcreator, not outside.inside qt also do i need to include?

          J Offline
          J Offline
          jsulm
          Lifetime Qt Champion
          wrote on 30 Jun 2017, 04:33 last edited by
          #30

          @shravani In QtCreator it should work. Use http://www.dependencywalker.com to see what is missing.
          Besides the lib file - do you have the DLL? Lib file is needed for linking, but DLL is needed at runtime.
          Also can you show how you added the lib to pro file?

          https://forum.qt.io/topic/113070/qt-code-of-conduct

          S 1 Reply Last reply 30 Jun 2017, 05:06
          1
          • J jsulm
            30 Jun 2017, 04:33

            @shravani In QtCreator it should work. Use http://www.dependencywalker.com to see what is missing.
            Besides the lib file - do you have the DLL? Lib file is needed for linking, but DLL is needed at runtime.
            Also can you show how you added the lib to pro file?

            S Offline
            S Offline
            shravani
            wrote on 30 Jun 2017, 05:06 last edited by
            #31

            @jsulm
            in this src/ qmqtt.h,.. and .lib files are there.so added that path.

            INCLUDEPATH += C:\Qt\qmqtt-master\src
            LIBS += -LC:\Qt\qmqtt-master\src -lqmqtt

            J 1 Reply Last reply 30 Jun 2017, 05:08
            0
            • S shravani
              30 Jun 2017, 05:06

              @jsulm
              in this src/ qmqtt.h,.. and .lib files are there.so added that path.

              INCLUDEPATH += C:\Qt\qmqtt-master\src
              LIBS += -LC:\Qt\qmqtt-master\src -lqmqtt

              J Offline
              J Offline
              jsulm
              Lifetime Qt Champion
              wrote on 30 Jun 2017, 05:08 last edited by
              #32

              @shravani
              Again: you need the DLL file to be able to execute your app. Where is qmqtt.dll (or libqmqtt.dll)?

              https://forum.qt.io/topic/113070/qt-code-of-conduct

              S 1 Reply Last reply 30 Jun 2017, 05:11
              1
              • J jsulm
                30 Jun 2017, 05:08

                @shravani
                Again: you need the DLL file to be able to execute your app. Where is qmqtt.dll (or libqmqtt.dll)?

                S Offline
                S Offline
                shravani
                wrote on 30 Jun 2017, 05:11 last edited by shravani
                #33

                @jsulm
                it is inside src only.do i need to add anywhere else again?
                after building library it created in /bin so i copied from there to src folder

                J 1 Reply Last reply 30 Jun 2017, 05:27
                0
                • S shravani
                  30 Jun 2017, 05:11

                  @jsulm
                  it is inside src only.do i need to add anywhere else again?
                  after building library it created in /bin so i copied from there to src folder

                  J Offline
                  J Offline
                  jsulm
                  Lifetime Qt Champion
                  wrote on 30 Jun 2017, 05:27 last edited by
                  #34

                  @shravani The DLL must be in a directory where the operating system is looking for shared libraries when loading an app. Fastest way is to copy it to the build directory of your app (where your executable is).

                  https://forum.qt.io/topic/113070/qt-code-of-conduct

                  S 2 Replies Last reply 30 Jun 2017, 05:28
                  2
                  • J jsulm
                    30 Jun 2017, 05:27

                    @shravani The DLL must be in a directory where the operating system is looking for shared libraries when loading an app. Fastest way is to copy it to the build directory of your app (where your executable is).

                    S Offline
                    S Offline
                    shravani
                    wrote on 30 Jun 2017, 05:28 last edited by
                    #35
                    This post is deleted!
                    1 Reply Last reply
                    1
                    • J jsulm
                      30 Jun 2017, 05:27

                      @shravani The DLL must be in a directory where the operating system is looking for shared libraries when loading an app. Fastest way is to copy it to the build directory of your app (where your executable is).

                      S Offline
                      S Offline
                      shravani
                      wrote on 2 Jul 2017, 06:24 last edited by
                      #36

                      @jsulm
                      i added all dlls but now getting this error
                      0_1498976658348_error.png

                      1 Reply Last reply
                      0
                      • S Offline
                        S Offline
                        SGaist
                        Lifetime Qt Champion
                        wrote on 2 Jul 2017, 20:41 last edited by
                        #37

                        Hi,

                        You can't start an application like that from explorer, you first have to follow the same steps you would before deploying your application on another computer.

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

                        S 1 Reply Last reply 3 Jul 2017, 00:51
                        0
                        • S SGaist
                          2 Jul 2017, 20:41

                          Hi,

                          You can't start an application like that from explorer, you first have to follow the same steps you would before deploying your application on another computer.

                          S Offline
                          S Offline
                          shravani
                          wrote on 3 Jul 2017, 00:51 last edited by shravani 7 Mar 2017, 03:27
                          #38

                          @SGaist
                          In Qt creator also I'm getting same error after adding ucrtbased.dll to debug folder.
                          i tried executing examples given in qt but getting same error.
                          recently i installed this qt 5.8.1 msvc2015 new version because in qt 5.0 it(mqtt) is not working.

                          0_1499045791448_error2.png 0_1499045799223_path.png

                          J 1 Reply Last reply 3 Jul 2017, 04:30
                          0
                          • S shravani
                            3 Jul 2017, 00:51

                            @SGaist
                            In Qt creator also I'm getting same error after adding ucrtbased.dll to debug folder.
                            i tried executing examples given in qt but getting same error.
                            recently i installed this qt 5.8.1 msvc2015 new version because in qt 5.0 it(mqtt) is not working.

                            0_1499045791448_error2.png 0_1499045799223_path.png

                            J Offline
                            J Offline
                            jsulm
                            Lifetime Qt Champion
                            wrote on 3 Jul 2017, 04:30 last edited by
                            #39

                            @shravani Which DLLs exactly did you copy and from where? No need to copy ucrtbased.dll when starting from QtCreator.

                            https://forum.qt.io/topic/113070/qt-code-of-conduct

                            S 1 Reply Last reply 3 Jul 2017, 04:41
                            0
                            • J jsulm
                              3 Jul 2017, 04:30

                              @shravani Which DLLs exactly did you copy and from where? No need to copy ucrtbased.dll when starting from QtCreator.

                              S Offline
                              S Offline
                              shravani
                              wrote on 3 Jul 2017, 04:41 last edited by shravani 7 Mar 2017, 04:42
                              #40

                              @jsulm
                              but while running it showed ucrtbased.dll is missing)DLL not found as above post)

                              J 1 Reply Last reply 3 Jul 2017, 04:42
                              0
                              • S shravani
                                3 Jul 2017, 04:41

                                @jsulm
                                but while running it showed ucrtbased.dll is missing)DLL not found as above post)

                                J Offline
                                J Offline
                                jsulm
                                Lifetime Qt Champion
                                wrote on 3 Jul 2017, 04:42 last edited by
                                #41

                                @shravani While running from QtCreator?

                                https://forum.qt.io/topic/113070/qt-code-of-conduct

                                S 1 Reply Last reply 3 Jul 2017, 04:43
                                0
                                • J jsulm
                                  3 Jul 2017, 04:42

                                  @shravani While running from QtCreator?

                                  S Offline
                                  S Offline
                                  shravani
                                  wrote on 3 Jul 2017, 04:43 last edited by shravani 7 Mar 2017, 04:44
                                  #42

                                  @jsulm
                                  while running from qt creator(DLL not found)

                                  0_1499057065092_Capture.PNG
                                  so i checked from outside qt to see which dll missing.so i added that

                                  J 1 Reply Last reply 3 Jul 2017, 04:46
                                  0
                                  • S shravani
                                    3 Jul 2017, 04:43

                                    @jsulm
                                    while running from qt creator(DLL not found)

                                    0_1499057065092_Capture.PNG
                                    so i checked from outside qt to see which dll missing.so i added that

                                    J Offline
                                    J Offline
                                    jsulm
                                    Lifetime Qt Champion
                                    wrote on 3 Jul 2017, 04:46 last edited by
                                    #43

                                    @shravani Running outside from QtCreator is different. You actually only need to copy your qmqtt.dll if you want to run from QtCreator. If you want to run outside of QtCreator you need to deploy your app as @SGaist already said. In one of my previous posts in this thread I posted a link to a side where you can read how to deploy your app on Windows.

                                    https://forum.qt.io/topic/113070/qt-code-of-conduct

                                    S 1 Reply Last reply 3 Jul 2017, 04:52
                                    0
                                    • J jsulm
                                      3 Jul 2017, 04:46

                                      @shravani Running outside from QtCreator is different. You actually only need to copy your qmqtt.dll if you want to run from QtCreator. If you want to run outside of QtCreator you need to deploy your app as @SGaist already said. In one of my previous posts in this thread I posted a link to a side where you can read how to deploy your app on Windows.

                                      S Offline
                                      S Offline
                                      shravani
                                      wrote on 3 Jul 2017, 04:52 last edited by shravani 7 Mar 2017, 04:52
                                      #44

                                      @jsulm
                                      i copied qmqtt.dll but still got that error (DLL not found).do i need to add anything else?

                                      J 1 Reply Last reply 3 Jul 2017, 04:53
                                      0
                                      • S shravani
                                        3 Jul 2017, 04:52

                                        @jsulm
                                        i copied qmqtt.dll but still got that error (DLL not found).do i need to add anything else?

                                        J Offline
                                        J Offline
                                        jsulm
                                        Lifetime Qt Champion
                                        wrote on 3 Jul 2017, 04:53 last edited by
                                        #45

                                        @shravani After adding qmqtt.dll which DLL is missing?

                                        https://forum.qt.io/topic/113070/qt-code-of-conduct

                                        S 1 Reply Last reply 3 Jul 2017, 04:55
                                        0
                                        • J jsulm
                                          3 Jul 2017, 04:53

                                          @shravani After adding qmqtt.dll which DLL is missing?

                                          S Offline
                                          S Offline
                                          shravani
                                          wrote on 3 Jul 2017, 04:55 last edited by
                                          #46

                                          @jsulm
                                          it was just showing the above error.i cannot find which dll is missing

                                          J 1 Reply Last reply 3 Jul 2017, 04:58
                                          0

                                          36/59

                                          2 Jul 2017, 06:24

                                          • Login

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