Navigation

    Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    • Unsolved
    1. Home
    2. Tags
    3. exe
    Log in to post

    • SOLVED Opening command shell when starting a Qprocess
      General and Desktop • c++ qprocess exe command line • • JCSB  

      5
      0
      Votes
      5
      Posts
      221
      Views

      @SGaist Thank you, this has solved my issue!! :D
    • UNSOLVED Run QT executable in new Ubuntu
      General and Desktop • qmake makefile exe executable • • Kinesis  

      4
      0
      Votes
      4
      Posts
      1292
      Views

      @Kinesis There are only two options: Install a compatible Qt version on the second computer Deploy all needed libraries along with your program. You may want to have a look at linuxdeployqt Regards
    • UNSOLVED Still can't figure out how to make my project standalone.
      General and Desktop • deploy exe send standalone • • JTrocks55  

      4
      0
      Votes
      4
      Posts
      984
      Views

      Oh ok, thanks to both of you! I think I am just going to make videos on it and show that without actually sending it. Thanks though!
    • UNSOLVED Static build - size of exe too big
      General and Desktop • static build size exe • • christos.alewa  

      11
      0
      Votes
      11
      Posts
      5673
      Views

      You could certainly make use of UPX, it should get the filesize down to maybe 4MB (by using compression).
    • UNSOLVED Qt BUG with executable generated, cannot doubleclick! (Ubuntu)
      Installation and Deployment • qtcreator deployment ubuntu 14.04 exe doubleclick • • Etienne123  

      9
      0
      Votes
      9
      Posts
      3703
      Views

      If I may, don't call the destructors like that. When you want to "destroy" a heap allocated object call delete on it.
    • UNSOLVED Linux/Windows
      Installation and Deployment • linux windows 10 qt 5.4 exe ubuntu 15.04 • • Djolas2001  

      2
      0
      Votes
      2
      Posts
      923
      Views

      Hi, You can cross-compile Qt and your application using MinGW provided that you don't use any Linux specific API.
    • QT and SFML different exe files
      General and Desktop • qt5.5 exe files sfml • • reina  

      6
      0
      Votes
      6
      Posts
      1508
      Views

      Writing a small compiler ?
    • To run the executable created using Qt, without Qt creator
      India • exec exe • • Divya Subramanian  

      7
      0
      Votes
      7
      Posts
      4080
      Views

      You have to place the respective libraries and plugins in corresponding place where the executable is placed. And the libraries and plugins must be refering to executables.
    • [SOLVED] Deployment DLL error: Couldn't find entry point in DLL "myProject.exe"
      General and Desktop • deployment dll exe • • Tecnova  

      3
      0
      Votes
      3
      Posts
      2426
      Views

      yes that was the problem thanks ^^
    • Can't trouble running an executable file for my Qt Application
      General and Desktop • qt5 build dll exe • • Robert Lech  

      15
      1
      Votes
      15
      Posts
      8003
      Views

      @koahnig Thank you very much for your help. Your link explained some concepts to me. I had the "The procedure entry point _ZN10QArrayData10deallocateEPS_jj could not be located in the dynamic link library Qt5Core.dll." error message and wasn't sure how to deal with it. I realized I was using only .dll files from the C:\Qt\Tools\QtCreator\bin directory. When I used the .dll files from the C:\Qt\5.4\mingw491_32\bin directory -- including libstdc++6.dll which i should have just tossed into my build folder, my issues disappeared. This makes sense since I was using that MinGW instance to do my compiling. This forum question helped my problem more specifically. Dependency Walker is still stating that I'm missing these files: API-MS-WIN-CORE-COM-L1-1-0.DLL API-MS-WIN-CORE-WINRT-ERROR-L1-1-0.DLL API-MS-WIN-CORE-WINRT-L1-1-0.DLL API-MS-WIN-CORE-WINRT-ROBUFFER-L1-1-0.DLL API-MS-WIN-CORE-WINRT-STRING-L1-1-0.DLL API-MS-WIN-SHCORE-SCALING-L1-1-0.DLL DCOMP.DLL GPSVC.DLL IESHIMS.DLL These are .dll files which some forums tell me are only side problems of something unrelated.
    • [SOLVED]Qt Creator default project not building
      General and Desktop • qtcreator build qtwidgets exe • • pigman980  

      10
      0
      Votes
      10
      Posts
      10800
      Views

      HI, I suggest to open a new post because you marked this as SOLVED. BTW if you moved to windows and want to see the debug output you should add CONFIG += console to your .pro file