Qt has a special Mac deployment tool macdeployqt designed to automate the process of creating an application bundle containing Qt libraries.
Questions tagged [macdeployqt]
54 questions
0
votes
1 answer
MacOS: g++ cross-compiler cannot find ld from dmg image
When I compile the sources from just a directory it's OK. But if I do it from dmg image I got this:
$…

Kroll
- 649
- 2
- 6
- 17
0
votes
0 answers
How to command line build a .app binary for OSX out of a Qt app?
I am preparing a shell script to build my QtApp into a .app for OSX. I do the following in my script
qmake MyApp.pro -spec macx-clang CONFIG+=release CONFIG+=x86_64 CONFIG+=qml_debug
make
macdeployqt MyApp/MyApp.app
And I get the MyApp.app. Great…

TheWaterProgrammer
- 7,055
- 12
- 70
- 159
0
votes
0 answers
Qt deployed (macdeployqt) application does not create a file
I'm facing the following problem:
I wrote a simple application to track working hours. Therefor I create a *.db file programmatically.
Launching the application from Qt Creator (debug or release) works perfectly fine.
I used the macdeployqt tool to…

marcus
- 138
- 1
- 1
- 8
0
votes
1 answer
Create a dmg file for qt app using macdeployqt
I currently created a 'dmg' file using macdeployqt and encountered the following error.
Dyld Error Message:
Library not loaded: @executable_path/../Frameworks/libosg.141.dylib
Referenced from:…

MistyD
- 16,373
- 40
- 138
- 240
0
votes
1 answer
Exclude Frameworks from macdeployqt
With Qt/C++ (QT 5.5) on OSX, is there a way to exclude frameworks for APIs I'm not using when running through macdeployqt?
For instance, I don't think I need the following frameworks:
QtQml.framework
QtQuick.framework
QtWebChannel.framework (I'm…

Volomike
- 23,743
- 21
- 113
- 209
0
votes
1 answer
Add to Qt project contents of directory as OS X bundle resource
I want to add to Qt project a contents of directory which contains: a bash script and a few java files inside other various sub-directories. I tried INCLUDEPATH and it didn't work.
I don't want the directory in the build directory, I want it inside…

Akash Popat
- 420
- 3
- 18
0
votes
1 answer
Qt 5.3.1: macdeployqt tries to include everything on my hard drive; how to fix?
I'm running Qt 5.3.1 on Mac OS X 10.8 and 10.9 I'm trying to use the macdeployqt tool to bundle libraries and plugins with my executable, but it's apparently trying to include everything on my hard drive.
I invoke it…

Adam Wilt
- 553
- 4
- 10
0
votes
0 answers
Bad file descriptor using macdeployqt and brew libs
I try to deploy a mac app using macdeployqt. It used to work like a charm but since I use homebrew to get my libs, the deploy doesn't works, throwing a lot (400+) of lines like that :
ERROR: "install_name_tool: can't open input file:…

Thomas Ayoub
- 29,063
- 15
- 95
- 142
0
votes
2 answers
Macdeployqt doesn't include Phonon in the .app bundle
Hello fellow programmers!
I have written a video player using Qt. Everything works fine on my Mac, but when I use macdeployqt to deploy my application and I open the result, I am getting the following message:
WARNING: bool…

Sommerwild
- 506
- 1
- 6
- 18