Results 1 to 5 of 5

Thread: How package and publish my application?

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #4
    Join Date
    Mar 2006
    Location
    Mountain View, California
    Posts
    489
    Thanks
    3
    Thanked 74 Times in 54 Posts
    Qt products
    Qt3 Qt4 Qt/Embedded
    Platforms
    MacOS X Unix/X11 Windows

    Default Re: How package and publish my application?

    Don't go the autoconf route. That way leads to madness! Qmake can handle installation, so use it. You just need to define some install targets in your .pro file.

    If you install to the standard locations under a hierarchy, then it will be easy to find stuff. The executable will be under /usr/local/bin, data files and icons under /usr/local/share/appname, and documentation under /usr/local/share/docs/appname. And so on. The tricky part is that the software might have been installed somewhere other than the default /usr/local, but when you know where your executable is, then you know where everything else is. Use QApplication::applicationDirPath() to find out.

  2. The following 2 users say thank you to Brandybuck for this useful post:

    jiveaxe (20th October 2007), xEsk (16th November 2007)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Qt is a trademark of The Qt Company.