Re: [CMake] How do I set an Xcode property on the global/root project?

2015-06-15 Thread Petr Kmoch
On Sun, Jun 14, 2015 at 10:21 PM, Eric Wing ewmail...@gmail.com wrote: On 6/14/15, Gregor Jasny gja...@googlemail.com wrote: Hi Eric, On 14/06/15 14:38, Eric Wing wrote: I have been successful at setting Xcode properties on specific targets with CMake via: set_property (TARGET

[CMake] How do I set an Xcode property on the global/root project?

2015-06-14 Thread Eric Wing
I have been successful at setting Xcode properties on specific targets with CMake via: set_property (TARGET ${TARGET} PROPERTY XCODE_ATTRIBUTE_${XCODE_PROPERTY} ${XCODE_VALUE}) But I have been unable to set properties on the global/root project. Is there a way to do this? Much of the time, I

Re: [CMake] How do I set an Xcode property on the global/root project?

2015-06-14 Thread Gregor Jasny via CMake
Hi Eric, On 14/06/15 14:38, Eric Wing wrote: I have been successful at setting Xcode properties on specific targets with CMake via: set_property (TARGET ${TARGET} PROPERTY XCODE_ATTRIBUTE_${XCODE_PROPERTY} ${XCODE_VALUE}) But I have been unable to set properties on the global/root

Re: [CMake] How do I set an Xcode property on the global/root project?

2015-06-14 Thread Eric Wing
On 6/14/15, Gregor Jasny gja...@googlemail.com wrote: Hi Eric, On 14/06/15 14:38, Eric Wing wrote: I have been successful at setting Xcode properties on specific targets with CMake via: set_property (TARGET ${TARGET} PROPERTY XCODE_ATTRIBUTE_${XCODE_PROPERTY} ${XCODE_VALUE}) But I have