STT-tensorflow/tensorflow/lite/experimental/ios/TensorFlowLiteSelectTfOps.podspec.template
Taehee Jeong 4a690425ee Add CoreML as a weak_framework in TensorFlowLiteC podspec
PiperOrigin-RevId: 304364533
Change-Id: Ibba9c4e65f3c326d595607e130ba58ae01ec7f4a
2020-04-02 03:15:36 -07:00

23 lines
846 B
Plaintext

Pod::Spec.new do |s|
s.name = 'TensorFlowLiteSelectTfOps'
s.version = '${TFL_BUILD_VERSION}'
s.authors = 'Google Inc.'
s.license = { :type => 'Apache' }
s.homepage = 'https://github.com/tensorflow/tensorflow'
s.source = { :http => "${TFL_DOWNLOAD_URL}" }
s.summary = 'TensorFlow Lite'
s.description = <<-DESC
This pod can be used in addition to `TensorFlowLiteSwift` or
`TensorFlowLiteObjC` pod, in order to enable Select TensorFlow ops. The
resulting binary should also be force-loaded to the final app binary.
DESC
s.ios.deployment_target = '9.0'
s.module_name = 'TensorFlowLiteSelectTfOps'
s.library = 'c++'
s.vendored_frameworks = 'Frameworks/TensorFlowLiteSelectTfOps.framework'
s.weak_frameworks = 'CoreML'
end