Macdeployqt dmg disabled build versions in Qt
-
Are you using a self-compiled Qt ?
-
Ok, I was using my own build of Qt.
Configure the complete qttools module then you can just build macdeployqt.
mkdir build_qttools pushd build_qttools /path/to/qmake /path/to/Qt/qttools/ -r make -C src/macdeployqt cp bin/macdeploqt /path/to/macdeployqt
[edit: added missing option. SGaist]
-
@SGaist
build_qttools user$ make -C src/macdeployqt
gives me:
make: *** src/macdeployqt: No such file or directory. Stop.
and
build_qttools user$ make -C pathTo/qttools/src/macdeployqt make: *** No targets specified and no makefile found. Stop.
-
There was an option missing. You have to do a recursive configuration. Sorry. I've updated the sample.
-
When calling make install ?
-
@SGaist when calling cp bin/macdeployqt /path/to/macdeployqt
Should there be an / after qttools in
/path/to/qmake /path/to/Qt/qttools/ -r
?Or when doing:
make -C src/macdeployqt
:
cd macdeployqt/ && ( test -e Makefile || /Users/user/Qt5.10.0/5.10.0/clang_64/bin/qmake -o Makefile /Users/user/qttools/src/macdeployqt/macdeployqt/macdeployqt.pro ) && /Applications/Xcode.app/Contents/Developer/usr/bin/make -f Makefile make[1]: Nothing to be done for
first'.`My files are laid out like this in my home/root folder of the user:
/Qt/5.9.2 which I got from the complete Qt installation.
/Qt5.10.0 New version of Qt downloaded later on
/qttools git cloned version with the patchI've been referring to the path of macdeployqt from the cloned git version, not the ones inside Qt5.9.2 or 5.10.0,
to qmake inside Qt5.10.0 and to
qttools in my root/home folder not inside Qt5.9.2 or 5.10.0 -
It should go in the bin folder of your Qt installation.
What you seem to be doing is trying to copy the executable in a folder that contains a folder named
macdeployqt
. -
Looks correct yes