Re: [cmake-developers] Xcode generator is adding old attributes on .pbxproj

2016-02-08 Thread Arnau Quintana
Hi Gregor, I am so glad to hear this! :) It will be great to join efforts. I have used xcproj, and it is kind of a quick and temporal solution for us (and maybe others), but I really want to understand all the implications and what cmake generates for Xcode projects. For instance, I found

Re: [cmake-developers] Xcode generator is adding old attributes on .pbxproj

2016-02-06 Thread Gregor Jasny via cmake-developers
Hello, some time ago I started a project to make the CMake generated pbxproj identical to the one Xcode writes. Some patches of that effort are already in master, some lack some cleanup. It would be great working with you on individual patches to 'modernize' generated pbxproj files. Patches

Re: [cmake-developers] Xcode generator is adding old attributes on .pbxproj

2016-02-05 Thread Arnau Quintana
Hi Brad, Thanks for the quick response! :) The changes to remove “refType” are quite safe. I see no big problems there. The same for “buildSettings” as this attribute is empty for the “PBXProject” section. About “buildStyles”, as I see on the cmake code, it is used only to set

[cmake-developers] Xcode generator is adding old attributes on .pbxproj

2016-02-05 Thread Arnau Quintana
Hi, tl;dr: I have problems generating .pbxproj files with cmake, related to deprecated attributes on .pbxproj. We are using cmake to generate and build Xcode projects. We need to generate the schemes programatically, and to do so we are using https://github.com/CocoaPods/Xcodeproj to generate

Re: [cmake-developers] Xcode generator is adding old attributes on .pbxproj

2016-02-05 Thread Brad King
On 02/05/2016 09:23 AM, Arnau Quintana wrote: > The problem is that the .pbxproj contains some attributes that seem to be > deprecated. Specifically: > > * “refType" for the “PBXFileReference" isa > * “buildSettings” and “buildStyles” for “PBXProject" isa > > Xcode is nice enough to open

Re: [cmake-developers] Xcode generator is adding old attributes on .pbxproj

2016-02-05 Thread Brad King
On 02/05/2016 11:35 AM, Arnau Quintana wrote: > I do not know if these are related. Any thoughts? Unfortunately I'm not familiar enough with Xcode to answer. Hopefully someone else can answer. > I am curious about what tests are you running. Could you > please point me to the relevant tests?