franck
franck

Reputation: 3015

Manipulating xcode schemes from the console

In xcode, is it possible to create new schemes and/or to add files to an existing scheme from the command line ?

Upvotes: 1

Views: 48

Answers (1)

Viktor Benei
Viktor Benei

Reputation: 3545

There's no officially supported way to create or manage Xcode projects from scripts, but you can use a community project to do that, for example CocoaPods' gem: https://github.com/CocoaPods/Xcodeproj

Upvotes: 1

Related Questions