Method: FluentCommandBuilder::XCodeBuild::V45::BuildProject#sdk

Defined in:
lib/fluent_command_builder/command_builders/xcodebuild_45.rb

#sdk(sdk_name) {|@b| ... } ⇒ Object

Yields:

  • (@b)


131
132
133
134
135
# File 'lib/fluent_command_builder/command_builders/xcodebuild_45.rb', line 131

def sdk(sdk_name)
  @b.append " -sdk #{@b.format sdk_name}"
  yield @b if block_given?
  self
end