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 31.4k 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.
  • S Offline
    S Offline
    shravani
    wrote on last edited by shravani
    #3

    hi,
    this is my .pro file
    and my code is inthis( https://github.com/wuming123057/qmqtt-client) link.
    the library i added is https://github.com/emqtt/qmqtt

    QT += core gui network

    greaterThan(QT_MAJOR_VERSION, 4): QT += widgets

    CONFIG += c++11
    CONFIG+= NO_UNIT_TESTS
    TARGET = qmqtt-client
    TEMPLATE = app

    #NOTICE: add DYLD_LIBRARY_PATH to build environment.
    INCLUDEPATH += C:\Qt\qmqtt-master\src
    LIBS += -LC:\Qt\qmqtt-master\src -lqmqtt

    SOURCES += main.cpp
    mainwindow.cpp
    connform.cpp
    pubform.cpp
    subform.cpp

    HEADERS += mainwindow.h
    connform.h
    pubform.h
    subform.h
    mqttform.h

    FORMS += mainwindow.ui
    connform.ui
    pubform.ui
    subform.ui

    im getting error:
    cannot find -lmqtt
    returned 1 exit status

    raven-worxR 1 Reply Last reply
    0
    • F Offline
      F Offline
      Fuel
      wrote on last edited by
      #4

      which name has the library in this path C:\Qt\qmqtt-master\src ?

      1 Reply Last reply
      0
      • S shravani

        hi,
        this is my .pro file
        and my code is inthis( https://github.com/wuming123057/qmqtt-client) link.
        the library i added is https://github.com/emqtt/qmqtt

        QT += core gui network

        greaterThan(QT_MAJOR_VERSION, 4): QT += widgets

        CONFIG += c++11
        CONFIG+= NO_UNIT_TESTS
        TARGET = qmqtt-client
        TEMPLATE = app

        #NOTICE: add DYLD_LIBRARY_PATH to build environment.
        INCLUDEPATH += C:\Qt\qmqtt-master\src
        LIBS += -LC:\Qt\qmqtt-master\src -lqmqtt

        SOURCES += main.cpp
        mainwindow.cpp
        connform.cpp
        pubform.cpp
        subform.cpp

        HEADERS += mainwindow.h
        connform.h
        pubform.h
        subform.h
        mqttform.h

        FORMS += mainwindow.ui
        connform.ui
        pubform.ui
        subform.ui

        im getting error:
        cannot find -lmqtt
        returned 1 exit status

        raven-worxR Offline
        raven-worxR Offline
        raven-worx
        Moderators
        wrote on last edited by raven-worx
        #5

        @shravani said in how to add library(qmqtt.h) in qmqtt client for windows:

        INCLUDEPATH += C:\Qt\qmqtt-master\src

        should point to the sources of qmqtt (specifically where qmqtt.h is placed in)

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

        Also you need to build qmqtt beforehand. -L should point to the path of the library (.lib) you built

        --- SUPPORT REQUESTS VIA CHAT WILL BE IGNORED ---
        If you have a question please use the forum so others can benefit from the solution in the future

        S 1 Reply Last reply
        2
        • S Offline
          S Offline
          shravani
          wrote on last edited by shravani
          #6

          thank you,
          i will try building the qmqtt.

          1 Reply Last reply
          1
          • raven-worxR raven-worx

            @shravani said in how to add library(qmqtt.h) in qmqtt client for windows:

            INCLUDEPATH += C:\Qt\qmqtt-master\src

            should point to the sources of qmqtt (specifically where qmqtt.h is placed in)

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

            Also you need to build qmqtt beforehand. -L should point to the path of the library (.lib) you built

            S Offline
            S Offline
            shravani
            wrote on last edited by
            #7

            @raven-worx
            hi,
            i tried building the library(i got "could not find executable please specify one" dialog box) there is no .dll or .lib or .so file in build folder.
            in build it created 3 folders(.moc,.obj,.pch).could you please tell me how to generate .lib file

            jsulmJ 1 Reply Last reply
            0
            • S shravani

              @raven-worx
              hi,
              i tried building the library(i got "could not find executable please specify one" dialog box) there is no .dll or .lib or .so file in build folder.
              in build it created 3 folders(.moc,.obj,.pch).could you please tell me how to generate .lib file

              jsulmJ Offline
              jsulmJ Offline
              jsulm
              Lifetime Qt Champion
              wrote on last edited by
              #8

              @shravani Can you explain what exactly you did?

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

              S 1 Reply Last reply
              0
              • jsulmJ jsulm

                @shravani Can you explain what exactly you did?

                S Offline
                S Offline
                shravani
                wrote on last edited by shravani
                #9

                @jsulm

                from here https://github.com/emqtt/qmqtt i downloaded zip file.in that src/mqtt mqtt.pro i built using qt.but that library not generating any .lib files.
                (as u told i need to build qmqtt beforehand. -L should point to the path of the library (.lib) you built.)

                jsulmJ 1 Reply Last reply
                0
                • S shravani

                  @jsulm

                  from here https://github.com/emqtt/qmqtt i downloaded zip file.in that src/mqtt mqtt.pro i built using qt.but that library not generating any .lib files.
                  (as u told i need to build qmqtt beforehand. -L should point to the path of the library (.lib) you built.)

                  jsulmJ Offline
                  jsulmJ Offline
                  jsulm
                  Lifetime Qt Champion
                  wrote on last edited by
                  #10

                  @shravani What I wanted to know was: how exactly did you build? What steps did you execute?
                  "built using qt" - what does this mean? Qt does not build anything. Do you mean you used QtCreator or qmake?
                  Can you also post the build log?

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

                  S 1 Reply Last reply
                  0
                  • jsulmJ jsulm

                    @shravani What I wanted to know was: how exactly did you build? What steps did you execute?
                    "built using qt" - what does this mean? Qt does not build anything. Do you mean you used QtCreator or qmake?
                    Can you also post the build log?

                    S Offline
                    S Offline
                    shravani
                    wrote on last edited by shravani
                    #11

                    @jsulm
                    i used qt creator.i just opened .pro file (src/mqtt/mqtt.pro from above link)using qtcreator and build all.

                    jsulmJ 1 Reply Last reply
                    0
                    • S shravani

                      @jsulm
                      i used qt creator.i just opened .pro file (src/mqtt/mqtt.pro from above link)using qtcreator and build all.

                      jsulmJ Offline
                      jsulmJ Offline
                      jsulm
                      Lifetime Qt Champion
                      wrote on last edited by
                      #12

                      @shravani Can you post the build log?

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

                      S 1 Reply Last reply
                      0
                      • jsulmJ jsulm

                        @shravani Can you post the build log?

                        S Offline
                        S Offline
                        shravani
                        wrote on last edited by shravani
                        #13

                        @jsulm
                        when i click on build all one dialog box came like below.but in build folder(build-abc-Desktop_Qt_5_8_1_MinGW_32bit-Debug) .lib file not generated only 3 folders(.moc, .obj , .pch) created .!!0_1498626615873_Capture.PNG

                        jsulmJ 1 Reply Last reply
                        0
                        • S shravani

                          @jsulm
                          when i click on build all one dialog box came like below.but in build folder(build-abc-Desktop_Qt_5_8_1_MinGW_32bit-Debug) .lib file not generated only 3 folders(.moc, .obj , .pch) created .!!0_1498626615873_Capture.PNG

                          jsulmJ Offline
                          jsulmJ Offline
                          jsulm
                          Lifetime Qt Champion
                          wrote on last edited by
                          #14

                          @shravani It looks like you're clicking on Run not on Build. Since mqtt is a lib you cannot execute it. And again: can you post the build log?

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

                          S 1 Reply Last reply
                          1
                          • jsulmJ jsulm

                            @shravani It looks like you're clicking on Run not on Build. Since mqtt is a lib you cannot execute it. And again: can you post the build log?

                            S Offline
                            S Offline
                            shravani
                            wrote on last edited by shravani
                            #15

                            @jsulm
                            sorry ,i can only post what i got after building in build folder.0_1498628025184_build_image.PNG!0_1498628076971_build.PNG

                            jsulmJ raven-worxR 2 Replies Last reply
                            0
                            • S shravani

                              @jsulm
                              sorry ,i can only post what i got after building in build folder.0_1498628025184_build_image.PNG!0_1498628076971_build.PNG

                              jsulmJ Offline
                              jsulmJ Offline
                              jsulm
                              Lifetime Qt Champion
                              wrote on last edited by
                              #16

                              @shravani Why can't you post the build log? You have it in QtCreator. The screen-shots you posted do not help.

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

                              1 Reply Last reply
                              0
                              • S shravani

                                @jsulm
                                sorry ,i can only post what i got after building in build folder.0_1498628025184_build_image.PNG!0_1498628076971_build.PNG

                                raven-worxR Offline
                                raven-worxR Offline
                                raven-worx
                                Moderators
                                wrote on last edited by
                                #17

                                @shravani
                                got the folder where you donwloaded qmqtt (where the qmqtt.pro resides) and and execute the following:

                                1. qmake
                                2. nmake (for Visual Studio compiler) or mingw32-make (for mingw)

                                thats it. No QtCreator needed.
                                Then the .dll and corresponding .lib (MSVC) or .a (mingw32) file will be created in the output folder.

                                --- SUPPORT REQUESTS VIA CHAT WILL BE IGNORED ---
                                If you have a question please use the forum so others can benefit from the solution in the future

                                S 1 Reply Last reply
                                1
                                • raven-worxR raven-worx

                                  @shravani
                                  got the folder where you donwloaded qmqtt (where the qmqtt.pro resides) and and execute the following:

                                  1. qmake
                                  2. nmake (for Visual Studio compiler) or mingw32-make (for mingw)

                                  thats it. No QtCreator needed.
                                  Then the .dll and corresponding .lib (MSVC) or .a (mingw32) file will be created in the output folder.

                                  S Offline
                                  S Offline
                                  shravani
                                  wrote on last edited by shravani
                                  #18

                                  @raven-worx
                                  thank you,
                                  im new to qt could you please tell me how to execute qmake and mingw32-make in windows?

                                  raven-worxR 1 Reply Last reply
                                  0
                                  • S shravani

                                    @raven-worx
                                    thank you,
                                    im new to qt could you please tell me how to execute qmake and mingw32-make in windows?

                                    raven-worxR Offline
                                    raven-worxR Offline
                                    raven-worx
                                    Moderators
                                    wrote on last edited by raven-worx
                                    #19

                                    @shravani
                                    open a console window and execute "qmake" let it finished and afterwards execute one of the two (the correct one corresponding to your used compiler!) make commands for building.

                                    Make sure that the executable can be found by the system (add the paths to the PATH environment variable)
                                    But those a pretty basics. Probably you should go on reading some learning material first before trying to build a software which is based on a 3rd party library.

                                    --- SUPPORT REQUESTS VIA CHAT WILL BE IGNORED ---
                                    If you have a question please use the forum so others can benefit from the solution in the future

                                    S 1 Reply Last reply
                                    1
                                    • raven-worxR raven-worx

                                      @shravani
                                      open a console window and execute "qmake" let it finished and afterwards execute one of the two (the correct one corresponding to your used compiler!) make commands for building.

                                      Make sure that the executable can be found by the system (add the paths to the PATH environment variable)
                                      But those a pretty basics. Probably you should go on reading some learning material first before trying to build a software which is based on a 3rd party library.

                                      S Offline
                                      S Offline
                                      shravani
                                      wrote on last edited by shravani
                                      #20

                                      @raven-worx
                                      can u give any link to read? and where .lib will be created? in same folder?

                                      raven-worxR 1 Reply Last reply
                                      0
                                      • S shravani

                                        @raven-worx
                                        can u give any link to read? and where .lib will be created? in same folder?

                                        raven-worxR Offline
                                        raven-worxR Offline
                                        raven-worx
                                        Moderators
                                        wrote on last edited by
                                        #21

                                        @shravani
                                        Getting started.
                                        Probably you should consider buying a book about Qt also

                                        --- SUPPORT REQUESTS VIA CHAT WILL BE IGNORED ---
                                        If you have a question please use the forum so others can benefit from the solution in the future

                                        S 1 Reply Last reply
                                        1
                                        • raven-worxR raven-worx

                                          @shravani
                                          Getting started.
                                          Probably you should consider buying a book about Qt also

                                          S Offline
                                          S Offline
                                          shravani
                                          wrote on last edited by
                                          #22

                                          @raven-worx
                                          but using qtcreator also, run qmake is possible right?why am i not getting .lib file file?can you see screenshots of my debug folder (above)after building.

                                          raven-worxR 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