Results 1 to 2 of 2

Thread: How to share Qt Runtime files for two (manay) Qt applications?

  1. #1
    Join Date
    Jan 2015
    Posts
    35
    Thanks
    20
    Qt products
    Qt5
    Platforms
    MacOS X Windows

    Default How to share Qt Runtime files for two (manay) Qt applications?

    Hi,

    I distributed my Qt Applications with Qt Runtime Files on Windows platform.

    eg. Application One is existed at C:/App1 folder
    myapp.exe
    Qt5Core.dll
    Qt5Gui.dll
    Qt5Widgets.dll
    libwinpthread-1.dll
    libstdc++-6.dll
    libgcc_s_dw2-1.dll
    icuuc53.dll
    icuin53.dll
    icudt53.dll

    Application two is existed at C:/Program Files/MyApp2 folder
    MyApp2.exe
    run time file .... (I want to reference from C:/App1 folder)
    Now I want to run my application two without duplicate runtime files in my C:/Program Files/MyApp2 folder.

    How can I solve it?

    Thanks in Advanced.

  2. #2
    Join Date
    Mar 2008
    Location
    Kraków, Poland
    Posts
    1,536
    Thanked 284 Times in 279 Posts
    Qt products
    Qt4
    Platforms
    Unix/X11 Windows

    Default Re: How to share Qt Runtime files for two (manay) Qt applications?

    C:/Program Files/MyApp2 must be in PATH. You can edit environment variable PATH or start second application with BAT file :
    Qt Code:
    1. PATH=C:/Program Files/MyApp2;%PATH%
    2. C:/App1/app1.exe
    To copy to clipboard, switch view to plain text mode 

Similar Threads

  1. Replies: 3
    Last Post: 25th April 2015, 09:09
  2. Runtime application menu customisation
    By oberlus in forum Qt Programming
    Replies: 1
    Last Post: 26th July 2011, 17:30
  3. Application gets aborted runtime
    By Yayati.Ekbote in forum Qt Programming
    Replies: 0
    Last Post: 2nd April 2010, 12:13
  4. Replies: 11
    Last Post: 18th May 2007, 10:38

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
  •  
Digia, Qt and their respective logos are trademarks of Digia Plc in Finland and/or other countries worldwide.