class Xcodeproj::Project::Object::PBXBuildRule

def add_output_file(file, compiler_flags = '')

Returns:
  • (Void) -

Parameters:
  • compiler_flags (String) -- the compiler flags for the file.
  • file (PBXFileReference) -- the file to add.
def add_output_file(file, compiler_flags = '')
  (self.output_files ||= []) << file
  (self.output_files_compiler_flags ||= []) << compiler_flags
end