[cmake-developers] Extending XCode scheme generation support

2018-02-23 Thread Martin Sander
Sorry for creating a new thread, I do not know how to respond to a previous thread as a new member. Is there any progress on the xcode schemes? If not, I’ll give it a try and change cmXCodeScheme.cxx according to https://cmake.org/get-involved I’m especially interested in changing the

Re: [cmake-developers] Extending XCode scheme generation support

2017-10-23 Thread Steven Velez
Hi Gregor, I know you are probably busy with other things, but do you see anything in the discussion so far that should prevent an implementation attempt? I don't have a whole lot of time available to work on this either, so progress will probably be slow with me squeezing in work here and

Re: [cmake-developers] Extending XCode scheme generation support

2017-10-08 Thread Steven Velez
After spending some time trying to figure out how to affect the build "destination", it seems that destinations associated with a given scheme are not influenced by anything beyond the targets referenced as build targets for the scheme. In other words, if a scheme builds an iOS target, then the

Re: [cmake-developers] Extending XCode scheme generation support

2017-10-05 Thread Steven Velez
Thanks for the followup Gregor. One thing that concerns me about the property-centric approach is that I can't think of a way to use properties for generating a custom scheme that builds the ALL_BUILD target. I would assume this would run into the same issues and limitations that I have seen in

Re: [cmake-developers] Extending XCode scheme generation support

2017-09-29 Thread Steven Velez
Hi guys, Any thoughts on this? TL;DR Version: We can add some target properties that the Xcode generator uses to customize schemes: * XCODE_SCHEME_NAME * XCODE_SCHEME_LAUNCH_OPTS * XCODE_SCHEME_LAUNCH_ADTL_OPTS * XCODE_SCHEME_LAUNCH_RUNNABLE * XCODE_SCHEME_LAUNCH_ARGUMENTS *

Re: [cmake-developers] Extending XCode scheme generation support

2017-09-21 Thread Steven Velez
Hello Again, Sorry for the delay. After some consideration and investigation, I have the following two proposals: # Property-Centric In this proposal, the generation of the scheme files is customized primarily by a user setting additional, specialized properties on a given target, which then

Re: [cmake-developers] Extending XCode scheme generation support

2017-09-15 Thread Steven Velez
Sure.. but I haven't even thought about it much yet. So when that has happened, I'll make a more formal proposal. Thanks, Steven On Fri, Sep 15, 2017 at 11:04 AM, Brad King wrote: > On 09/15/2017 10:55 AM, Steven Velez wrote: > > I am assuming that the lack of response

Re: [cmake-developers] Extending XCode scheme generation support

2017-09-15 Thread Brad King
On 09/15/2017 10:55 AM, Steven Velez wrote: > I am assuming that the lack of response indicates that there has not > been much thought or interest expressed along this dimension of the feature. > > Would a better way to approach this be to implement a prototype and create a > WIP MR? Can you

Re: [cmake-developers] Extending XCode scheme generation support

2017-09-15 Thread Steven Velez
Hello, I am assuming that the lack of response indicates that there has not been much thought or interest expressed along this dimension of the feature. Would a better way to approach this be to implement a prototype and create a WIP MR? Thanks, Steven On Fri, Sep 8, 2017 at 12:29 PM, Steven

[cmake-developers] Extending XCode scheme generation support

2017-09-08 Thread Steven Velez
Hello All, I recently noticed that 3.9.1 added the ability for the XCode generator to also generate scheme files. This is great as we have been post processing generator output to add schemes according to our standards, but are discovering various issues with this approach. However, the current