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. Using qt for a commercial application on windows (LGPL)
Forum Update on Monday, May 27th 2025

Using qt for a commercial application on windows (LGPL)

Scheduled Pinned Locked Moved Unsolved General and Desktop
76 Posts 12 Posters 5.9k 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.
  • J Jo Jo

    @SGaist said in Using qt for a commercial application on windows (LGPL):

    As for who is right ? Both are. Inform yourself with people having real experience in managing software and projects using open source licenses and consult a lawyer to ensure you are doing things correctly

    I got you, thanks! But I don't really understand what I should talk about with a lawyer. If, for example, I ask him whether it is necessary to link dynamically with Qt libraries, he probably won't understand me, because he most likely doesn't know programming. How should I talk to him then?

    Pl45m4P Offline
    Pl45m4P Offline
    Pl45m4
    wrote on last edited by Pl45m4
    #65

    @Jo-Jo

    There are law firms specialized on IT/software development, licensing, eCommerce, data privacy etc...
    You don't talk to a lawyer's office that would also help you with your divorce ;-)


    If debugging is the process of removing software bugs, then programming must be the process of putting them in.

    ~E. W. Dijkstra

    J 1 Reply Last reply
    1
    • Pl45m4P Pl45m4

      @Jo-Jo

      There are law firms specialized on IT/software development, licensing, eCommerce, data privacy etc...
      You don't talk to a lawyer's office that would also help you with your divorce ;-)

      J Offline
      J Offline
      Jo Jo
      wrote on last edited by
      #66

      @Pl45m4 said in Using qt for a commercial application on windows (LGPL):

      There are law firms specialized on IT/software development, licensing, eCommerce, data privacy etc...

      Thank you!

      https://www.youtube.com/watch?v=bwTlCBbB3RY
      This video says to "display copyright notices of Qt libraries and license texsts lf LGPLv3 and GPL in Application's GUI". Where can I find copyright notices of Qt libraries?

      1 Reply Last reply
      0
      • J Jo Jo

        @JKSH said in Using qt for a commercial application on windows (LGPL):

        https://www.youtube.com/watch?v=bwTlCBbB3RY

        Now i am watching this video and can`t understand this detail: At the 6:30, video says: "display copyright notices of Qt libraries and license texsts lf LGPLv3 and GPL in Application's GUI (4c)".

        1. I am familiar with LGPLv3 and GPL text, but where i can found "copyright notices of Qt libraries"?
        2. What does 4c mean?
        JKSHJ Offline
        JKSHJ Offline
        JKSH
        Moderators
        wrote on last edited by
        #67

        @Jo-Jo said in Using qt for a commercial application on windows (LGPL):

        @JKSH said in Using qt for a commercial application on windows (LGPL):

        https://www.youtube.com/watch?v=bwTlCBbB3RY

        Now i am watching this video and can`t understand this detail: At the 6:30, video says: "display copyright notices of Qt libraries and license texsts lf LGPLv3 and GPL in Application's GUI (4c)".

        1. I am familiar with LGPLv3 and GPL text, but where i can found "copyright notices of Qt libraries"?
        2. What does 4c mean?
        1. See here for a definition of a "copyright notice": https://copyrightalliance.org/faqs/what-is-copyright-notice/
          Then, in a Qt Widgets application, call QApplication::aboutQt() and you'll see this line near the bottom of the dialog: "Copyright (C) The Qt Company Ltd. and other contributors." -- just add the year of release and you'll have a notice that meets the definition given in the link above.

        2. "(4c)" in the presentation slide refers to section 4c of the actual LGPLv3 license (visit https://www.gnu.org/licenses/lgpl-3.0.en.html and scroll down to "4. Combined Works"). Ditto for the other tags in the slide ("4a", "4d1", etc.)
          The presenter is rephrasing/simplifying/summarizing different parts of the license to make them easier to understand. He's citing the original parts so that viewers can check the actual license (for example, so that you can satisfy yourself that his statements align with the actual license)

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

        J 1 Reply Last reply
        2
        • JKSHJ JKSH

          @Jo-Jo said in Using qt for a commercial application on windows (LGPL):

          @JKSH said in Using qt for a commercial application on windows (LGPL):

          https://www.youtube.com/watch?v=bwTlCBbB3RY

          Now i am watching this video and can`t understand this detail: At the 6:30, video says: "display copyright notices of Qt libraries and license texsts lf LGPLv3 and GPL in Application's GUI (4c)".

          1. I am familiar with LGPLv3 and GPL text, but where i can found "copyright notices of Qt libraries"?
          2. What does 4c mean?
          1. See here for a definition of a "copyright notice": https://copyrightalliance.org/faqs/what-is-copyright-notice/
            Then, in a Qt Widgets application, call QApplication::aboutQt() and you'll see this line near the bottom of the dialog: "Copyright (C) The Qt Company Ltd. and other contributors." -- just add the year of release and you'll have a notice that meets the definition given in the link above.

          2. "(4c)" in the presentation slide refers to section 4c of the actual LGPLv3 license (visit https://www.gnu.org/licenses/lgpl-3.0.en.html and scroll down to "4. Combined Works"). Ditto for the other tags in the slide ("4a", "4d1", etc.)
            The presenter is rephrasing/simplifying/summarizing different parts of the license to make them easier to understand. He's citing the original parts so that viewers can check the actual license (for example, so that you can satisfy yourself that his statements align with the actual license)

          J Offline
          J Offline
          Jo Jo
          wrote on last edited by
          #68

          Thank you so much!

          @JKSH said in Using qt for a commercial application on windows (LGPL):

          just add the year of release and you'll have a notice that meets the definition given in the link above.

          QApplication::aboutQt()
          

          Shows following text: "Copyright (C) 2023 The Qt Company Ltd and other contributors."

          Should I leave 2023 or should I specify the year that was in effect when the current version of the app was released?

          JKSHJ 1 Reply Last reply
          0
          • J Jo Jo

            Thank you so much!

            @JKSH said in Using qt for a commercial application on windows (LGPL):

            just add the year of release and you'll have a notice that meets the definition given in the link above.

            QApplication::aboutQt()
            

            Shows following text: "Copyright (C) 2023 The Qt Company Ltd and other contributors."

            Should I leave 2023 or should I specify the year that was in effect when the current version of the app was released?

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

            You're most welcome!

            @Jo-Jo said in Using qt for a commercial application on windows (LGPL):

            QApplication::aboutQt()
            

            Shows following text: "Copyright (C) 2023 The Qt Company Ltd and other contributors."

            Should I leave 2023 or should I specify the year that was in effect when the current version of the app was released?

            Depending on the version of Qt that you're using, 2023 might be incorrect: https://bugreports.qt.io/browse/QTBUG-121906

            Personally, I would use the year that the particular version of Qt was released (because this particular copyright notice is about Qt, not about your app)

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

            J 1 Reply Last reply
            1
            • JKSHJ JKSH

              You're most welcome!

              @Jo-Jo said in Using qt for a commercial application on windows (LGPL):

              QApplication::aboutQt()
              

              Shows following text: "Copyright (C) 2023 The Qt Company Ltd and other contributors."

              Should I leave 2023 or should I specify the year that was in effect when the current version of the app was released?

              Depending on the version of Qt that you're using, 2023 might be incorrect: https://bugreports.qt.io/browse/QTBUG-121906

              Personally, I would use the year that the particular version of Qt was released (because this particular copyright notice is about Qt, not about your app)

              J Offline
              J Offline
              Jo Jo
              wrote on last edited by
              #70

              @JKSH said in Using qt for a commercial application on windows (LGPL):

              Personally, I would use the year that the particular version of Qt was released (because this particular copyright notice is about Qt, not about your app)

              I got you, thanks again!

              1 Reply Last reply
              0
              • J Offline
                J Offline
                Jo Jo
                wrote on last edited by
                #71

                @JKSH

                Sorry, i have another question. In this video https://www.youtube.com/watch?v=bwTlCBbB3RY at the 18:20 he talking about "Displaying License and Copyright in GUI": It looks like for each module I need to specify the copyright (and not just the Qt copyright, but all the copyrights from all the source files in the module), the GPL/LGPL license text, modifications (if any), the used-license (what is that? Should we just show the LGPLv3 text when clicking on this menu or something else?). So I need to duplicate this information for each Qt module I will use and it is not enough to provide the common text for all modules once?

                JKSHJ 1 Reply Last reply
                0
                • J Offline
                  J Offline
                  Jo Jo
                  wrote last edited by
                  #72

                  Can anyone answer?

                  1 Reply Last reply
                  0
                  • JKSHJ JKSH

                    A bit late to the party!

                    The most comprehensive and useful presentation that I know on this topic is one from Burkhard Stubert, entitled "Making Qt Systems Comply To LGPL Version 3" https://www.youtube.com/watch?v=bwTlCBbB3RY It also mentions a few cases towards the end where companies did not comply properly at first.

                    @Jo-Jo said in Using qt for a commercial application on windows (LGPL):

                    After all the messages, unfortunately, I still couldn't get a concrete answer about whether it is possible to use Qt for Windows app with the LGPL license for free and safely or not.

                    The presentation above discusses how to do it safely on embedded systems. Everything that you learn there can be applied to Windows too (and it's arguably even simpler on desktop systems).

                    A Offline
                    A Offline
                    Asperamanca
                    wrote last edited by
                    #73

                    @JKSH said in Using qt for a commercial application on windows (LGPL):

                    The most comprehensive and useful presentation that I know on this topic is one from Burkhard Stubert, entitled "Making Qt Systems Comply To LGPL Version 3" https://www.youtube.com/watch?v=bwTlCBbB3RY It also mentions a few cases towards the end where companies did not comply properly at first.

                    In that vein, Burhard's blog post on the Qt license might be relevant here: https://burkhardstubert.substack.com/p/do-not-sign-the-qt-license-agreement

                    S 1 Reply Last reply
                    1
                    • A Asperamanca

                      @JKSH said in Using qt for a commercial application on windows (LGPL):

                      The most comprehensive and useful presentation that I know on this topic is one from Burkhard Stubert, entitled "Making Qt Systems Comply To LGPL Version 3" https://www.youtube.com/watch?v=bwTlCBbB3RY It also mentions a few cases towards the end where companies did not comply properly at first.

                      In that vein, Burhard's blog post on the Qt license might be relevant here: https://burkhardstubert.substack.com/p/do-not-sign-the-qt-license-agreement

                      S Offline
                      S Offline
                      SimonSchroeder
                      wrote last edited by
                      #74

                      @Asperamanca said in Using qt for a commercial application on windows (LGPL):

                      In that vein, Burhard's blog post on the Qt license might be relevant here: https://burkhardstubert.substack.com/p/do-not-sign-the-qt-license-agreement

                      Found another one of his posts: https://burkhardstubert.substack.com/p/episode-29-better-built-by-burkhard

                      1 Reply Last reply
                      0
                      • J Jo Jo

                        @JKSH

                        Sorry, i have another question. In this video https://www.youtube.com/watch?v=bwTlCBbB3RY at the 18:20 he talking about "Displaying License and Copyright in GUI": It looks like for each module I need to specify the copyright (and not just the Qt copyright, but all the copyrights from all the source files in the module), the GPL/LGPL license text, modifications (if any), the used-license (what is that? Should we just show the LGPLv3 text when clicking on this menu or something else?). So I need to duplicate this information for each Qt module I will use and it is not enough to provide the common text for all modules once?

                        JKSHJ Offline
                        JKSHJ Offline
                        JKSH
                        Moderators
                        wrote last edited by JKSH
                        #75

                        @Jo-Jo said in Using qt for a commercial application on windows (LGPL):

                        the used-license (what is that? Should we just show the LGPLv3 text when clicking on this menu or something else?).

                        Keep the video running a tiny bit longer and he shows you an example (~20:00). Notice that the "used-license" view shows some Qt-specific text, that is not part of the LGPLv3 license text.

                        So I need to duplicate this information for each Qt module I will use and it is not enough to provide the common text for all modules once?

                        First, you must realize that Qt is not a single library; it consists of many libraries (or "modules"/"packages"). And the principle is: Each library that you use in your project should be clearly "attributed" (unless their license allows you to avoid attributing them).

                        The other important thing to realize is that different libraries in Qt can be offered under different licenses. For example:

                        • Qt Multimedia is offered under LGPLv3 OR GPLv3 OR Commercial
                        • Qt Graphs is only offered under GPLv3 OR Commercial (no LGPL)

                        Finally, the screens that Burkhard shows are just one example of how to arrange the license and copyright information (it's optimized for embedded devices). To see some examples optimized for desktop apps, open Mozilla Firefox and enter "about:license" as the URL, and open Google Chrome/Microsoft Edge and enter "chrome://credits/" as the URL. Notice that the Firefox arrangement does not require duplicating license text, while Chrome's does.

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

                        J 1 Reply Last reply
                        1
                        • JKSHJ JKSH

                          @Jo-Jo said in Using qt for a commercial application on windows (LGPL):

                          the used-license (what is that? Should we just show the LGPLv3 text when clicking on this menu or something else?).

                          Keep the video running a tiny bit longer and he shows you an example (~20:00). Notice that the "used-license" view shows some Qt-specific text, that is not part of the LGPLv3 license text.

                          So I need to duplicate this information for each Qt module I will use and it is not enough to provide the common text for all modules once?

                          First, you must realize that Qt is not a single library; it consists of many libraries (or "modules"/"packages"). And the principle is: Each library that you use in your project should be clearly "attributed" (unless their license allows you to avoid attributing them).

                          The other important thing to realize is that different libraries in Qt can be offered under different licenses. For example:

                          • Qt Multimedia is offered under LGPLv3 OR GPLv3 OR Commercial
                          • Qt Graphs is only offered under GPLv3 OR Commercial (no LGPL)

                          Finally, the screens that Burkhard shows are just one example of how to arrange the license and copyright information (it's optimized for embedded devices). To see some examples optimized for desktop apps, open Mozilla Firefox and enter "about:license" as the URL, and open Google Chrome/Microsoft Edge and enter "chrome://credits/" as the URL. Notice that the Firefox arrangement does not require duplicating license text, while Chrome's does.

                          J Offline
                          J Offline
                          Jo Jo
                          wrote last edited by
                          #76

                          @JKSH Thank you for explanation!

                          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