Method: Pod::BuildType.static_library

Defined in:
lib/cocoapods-core/build_type.rb

.static_libraryBuildType

Returns the build type for a static library.

Returns:

  • (BuildType)

    the build type for a static library



40
41
42
# File 'lib/cocoapods-core/build_type.rb', line 40

def self.static_library
  new(:linkage => :static, :packaging => :library)
end