Method: CBin::Build::Helper#build

Defined in:
lib/cocoapods-lhj-bin/helpers/build_helper.rb

#buildObject

[View source]

36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# File 'lib/cocoapods-lhj-bin/helpers/build_helper.rb', line 36

def build
  UI.section("Building static framework #{@spec}") do

    build_static_framework
    unless @skip_archive
      unless  CBin::Build::Utils.is_framework(@spec)
        build_static_library
        zip_static_library
      else
        zip_static_framework
      end
    end

  end

end