Is it possible to generate a DSYM file during a release build with Qt (4.7.4)? Any special directive I should be putting into my *.pro file?
Asked
Active
Viewed 1,540 times
1 Answers
1
It is, and the directive is:
QMAKE_POST_LINK='/Developer/usr/bin/dsymutil <path to bundle> -o <output name.dsym>
Taken from Qt Bugreports. But I tried it a while ago and it worked fine (that was under Leopard with 4.7.4)

Nicholas Smith
- 11,642
- 6
- 37
- 55
-
Thanks. will try that shortly! – JasonGenX Feb 21 '12 at 15:39