Method: Xcode::Group#create_system_library

Defined in:
lib/xcode/group.rb

#create_system_library(name) ⇒ FileReference

Create a system library reference within this group

@example libz.dylib

   project.frameworks_group.create_system_library "libz.dylib"

Parameters:

  • name (String)

    the name of the System Library to add to this group.

Returns:



203
204
205
# File 'lib/xcode/group.rb', line 203

def create_system_library(name)
  find_or_create_child_object FileReference.system_library(name)
end