Class: CBin::Framework::Builder

Inherits:
Object
  • Object
show all
Includes:
Pod
Defined in:
lib/cocoapods-tdf-bin/helpers/framework_builder.rb

Instance Method Summary collapse

Methods included from Pod

match_version?

Constructor Details

#initialize(spec, file_accessor, platform, source_dir, isRootSpec = true, build_model = "Debug") ⇒ Builder

Debug下还待完成



13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# File 'lib/cocoapods-tdf-bin/helpers/framework_builder.rb', line 13

def initialize(spec, file_accessor, platform, source_dir, isRootSpec = true, build_model="Debug")
  @spec = spec
  @source_dir = source_dir
  @file_accessor = file_accessor
  @platform = platform
  @build_model = build_model
  @isRootSpec = isRootSpec
  #vendored_static_frameworks 只有 xx.framework  需要拼接为 xx.framework/xx by slj
  vendored_static_frameworks = file_accessor.vendored_static_frameworks.map do |framework|
    path = framework
    extn = File.extname  path
    if extn.downcase == '.framework'
      path = File.join(path,File.basename(path, extn))
    end
    path
  end

  @vendored_libraries = (vendored_static_frameworks + file_accessor.vendored_static_libraries).map(&:to_s)
end

Instance Method Details

#buildObject



33
34
35
36
37
38
39
40
41
# File 'lib/cocoapods-tdf-bin/helpers/framework_builder.rb', line 33

def build
  # 编译出 arm64 的包
  defines = compile

  # 编译出 x86_64的包
  build_sim_libraries(defines)

  defines
end

#lipo_build(defines) ⇒ Object



43
44
45
46
47
48
49
50
51
52
53
54
55
56
# File 'lib/cocoapods-tdf-bin/helpers/framework_builder.rb', line 43

def lipo_build(defines)
  UI.section("Building static Library #{@spec}") do

    # cp_framework_to_source_dir
    build_xcframework_for_ios
    # build_static_library_for_ios

    # 整理 spec 的资源文件到 framework
    copy_resources

    # link_header
  end
  framework
end