Class: CBin::Framework::Builder
- Inherits:
-
Object
- Object
- CBin::Framework::Builder
- Includes:
- Pod
- Defined in:
- lib/cocoapods-lhj-bin/helpers/framework_builder.rb
Instance Method Summary collapse
- #build ⇒ Object
-
#initialize(spec, file_accessor, platform, source_dir, isRootSpec = true, build_model = 'Debug') ⇒ Builder
constructor
Debug下还待完成.
- #lipo_build(defines) ⇒ Object
Methods included from Pod
Constructor Details
#initialize(spec, file_accessor, platform, source_dir, isRootSpec = true, build_model = 'Debug') ⇒ Builder
Debug下还待完成
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
# File 'lib/cocoapods-lhj-bin/helpers/framework_builder.rb', line 15 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 path = File.join(path,File.basename(path, extn)) if extn.downcase == '.framework' path end @vendored_libraries = (vendored_static_frameworks + file_accessor.vendored_static_libraries).map(&:to_s) end |
Instance Method Details
#build ⇒ Object
33 34 35 36 37 38 |
# File 'lib/cocoapods-lhj-bin/helpers/framework_builder.rb', line 33 def build defines = compile build_sim_libraries(defines) defines end |
#lipo_build(defines) ⇒ Object
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 |
# File 'lib/cocoapods-lhj-bin/helpers/framework_builder.rb', line 40 def lipo_build(defines) # if CBin::Build::Utils.is_swift_module(@spec) || !CBin::Build::Utils.uses_frameworks? # UI.section("Building static Library #{@spec}") do # output = framework.versions_path + Pathname.new(@spec.name) # # build_static_library_for_ios(output) # # copy_headers # copy_license # copy_resources # # cp_to_source_dir # end # else # begin UI.section("Building framework #{@spec}") do output = framework.fwk_path + Pathname.new(@spec.name) copy_static_framework_dir_for_ios build_static_framework_machO_for_ios(output) # copy_license copy_framework_resources end # end framework end |