Re: [CMake] Xcode deployment postprocessing

2011-09-05 Thread Robert Bielik
Johan Björk skrev 2011-09-05 09:28: I don't remember when the deployment stuff is executed in xcode. How do you package your product? If you are using cpack ,you can tell it to strip the binary before packaging it. I haven't gotten that far yet, and besides I'm allergic to PackageMaker, spec

Re: [CMake] Xcode deployment postprocessing

2011-09-05 Thread Johan Björk
I don't remember when the deployment stuff is executed in xcode. How do you package your product? If you are using cpack ,you can tell it to strip the binary before packaging it. /Johan On Mon, Sep 5, 2011 at 6:47 AM, Robert Bielik wrote: > Tack Johan, > > Johan Björk skrev 2011-09-04 09:12: >

Re: [CMake] Xcode deployment postprocessing

2011-09-04 Thread Robert Bielik
Tack Johan, Johan Björk skrev 2011-09-04 09:12: You can set it using SET(CMAKE_XCODE_ATTRIBUTE_DEPLOYMENT_POSTPROCESSING YES) You might also want to enable the strip-attribute if that's what you are aiming for (STRIP_INSTALLED_PRODUCT?) Yup that's what I'm aiming for. However, having set that

Re: [CMake] Xcode deployment postprocessing

2011-09-04 Thread Johan Björk
You can set it using SET(CMAKE_XCODE_ATTRIBUTE_DEPLOYMENT_POSTPROCESSING YES) You might also want to enable the strip-attribute if that's what you are aiming for (STRIP_INSTALLED_PRODUCT?) For other settings, refer to: http://developer.apple.com/library/mac/#documentation/DeveloperTools/Reference/X

[CMake] Xcode deployment postprocessing

2011-09-03 Thread Robert Bielik
Hi, I need "Deployment Postprocessing" checked in Release build of Xcode, to make it strip symbols from my binary (without which it doesn't). How do I set this to checked via CMake ? (using 2.8.4) TIA /Rob ___ Powered by www.kitware.com Visit other