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 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 been u

Re: [CMake] CMAKE_COLOR_MAKEFILE

2015-06-14 Thread Gregor Jasny via CMake
On 10/06/15 04:17, Dave Yost wrote: > Hey, I love colors. But one of my users doesn’t. You could try the Ninja generator instead of Makefile. It much often faster, as verbose as necessary, and black'n'white. Thanks, Gregor -- Powered by www.kitware.com Please keep messages on-topic and check t

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

[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 wa