Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

XCode project: how to remove / add files from terminal (script, command, etc)

Is there a way to remove files from or add files to a XCode project without using XCode? That is, is there any terminal command or program to do it? I know I can do cp mv and rm to add / remove files but they are not reflected in the actual project file. Thanks!

like image 911
hzxu Avatar asked Mar 26 '14 01:03

hzxu


1 Answers

There's a Ruby Gem called xcodeproj which allows manipulation of an XCodeProject at the command line.

Check out Using the Xcodeproj Ruby Gem which provides an example of adding a file to a project.

# Open the existing Xcode project
project_file = product_name + '.xcodeproj'
project = Xcodeproj::Project.new(project_file)

# Add a file to the project in the main group
file_name = 'Message.m'
group_name = product_name
file = project.new_file(file_name, group_name)

# Add the file to the main target
main_target = project.targets.first
main_target.add_file_references([file])

# Save the project file
project.save_as(project_file)
like image 118
Dr. Andrew Burnett-Thompson Avatar answered Sep 22 '22 21:09

Dr. Andrew Burnett-Thompson