1

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?

Wes
  • 4,781
  • 7
  • 44
  • 53
JasonGenX
  • 4,952
  • 27
  • 106
  • 198

1 Answers1

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