Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. Qt Creator and other tools
  4. Qt Assistant for Windows XP
Forum Updated to NodeBB v4.3 + New Features

Qt Assistant for Windows XP

Scheduled Pinned Locked Moved Solved Qt Creator and other tools
6 Posts 2 Posters 1.7k 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.
  • K Offline
    K Offline
    koeniee
    wrote on last edited by
    #1

    Hi,

    I was wondering if there is also a Windows XP version for the Qt Assistant?
    I compiled my application with 'msvc_140_xp' and 'Qt 5.8', it is working without any additonal changes.

    The only problem is the Qt Assistant does not run under XP.

    I hope someone can point me in the right direction!

    Kind regards,

    Koen

    mrjjM 1 Reply Last reply
    0
    • K koeniee

      Hi,

      I was wondering if there is also a Windows XP version for the Qt Assistant?
      I compiled my application with 'msvc_140_xp' and 'Qt 5.8', it is working without any additonal changes.

      The only problem is the Qt Assistant does not run under XP.

      I hope someone can point me in the right direction!

      Kind regards,

      Koen

      mrjjM Offline
      mrjjM Offline
      mrjj
      Lifetime Qt Champion
      wrote on last edited by
      #2

      Hi
      What about just compiling Qt Assistant with same setup as your app?
      It should run then unless i missed something.

      Why dont it run under xp ?
      What happens?

      (sorry xp have been dead for year for me so i have no way of testing)

      1 Reply Last reply
      0
      • K Offline
        K Offline
        koeniee
        wrote on last edited by
        #3

        Thank you for your answer. I figured out how to compile Qt Assistant for Windows XP.

        The only thing you need to add to the qtassistant.pro file is the following code:

        win32 {
            contains(QMAKE_TARGET.arch, x86_64) {
                message("Building Xp 64")
                QMAKE_LFLAGS_WINDOWS = /SUBSYSTEM:WINDOWS,5.02
                QMAKE_LFLAGS_CONSOLE = /SUBSYSTEM:CONSOLE,5.02
            } else {
                message("Building Xp 32")
                QMAKE_LFLAGS_WINDOWS = /SUBSYSTEM:WINDOWS,5.01
                QMAKE_LFLAGS_CONSOLE = /SUBSYSTEM:CONSOLE,5.01
            }
        }
        
        

        And ofcourse you need to have the MSVC toolkit installed for XP. That's the msvc_140_xp toolkit.

        mrjjM 1 Reply Last reply
        2
        • K koeniee

          Thank you for your answer. I figured out how to compile Qt Assistant for Windows XP.

          The only thing you need to add to the qtassistant.pro file is the following code:

          win32 {
              contains(QMAKE_TARGET.arch, x86_64) {
                  message("Building Xp 64")
                  QMAKE_LFLAGS_WINDOWS = /SUBSYSTEM:WINDOWS,5.02
                  QMAKE_LFLAGS_CONSOLE = /SUBSYSTEM:CONSOLE,5.02
              } else {
                  message("Building Xp 32")
                  QMAKE_LFLAGS_WINDOWS = /SUBSYSTEM:WINDOWS,5.01
                  QMAKE_LFLAGS_CONSOLE = /SUBSYSTEM:CONSOLE,5.01
              }
          }
          
          

          And ofcourse you need to have the MSVC toolkit installed for XP. That's the msvc_140_xp toolkit.

          mrjjM Offline
          mrjjM Offline
          mrjj
          Lifetime Qt Champion
          wrote on last edited by
          #4

          @koeniee
          Super, thank you for reporting back with exact solution.
          Even xp should be dead , with dead on top, it seems there are still many out there :)

          1 Reply Last reply
          0
          • K Offline
            K Offline
            koeniee
            wrote on last edited by
            #5

            Yes xp should be dead, but if your application is serving many XP users it's nice to still have the option.

            mrjjM 1 Reply Last reply
            0
            • K koeniee

              Yes xp should be dead, but if your application is serving many XP users it's nice to still have the option.

              mrjjM Offline
              mrjjM Offline
              mrjj
              Lifetime Qt Champion
              wrote on last edited by
              #6

              @koeniee
              Indeed. Xp still works fine. its just not safe to use near internet.

              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