STT-tensorflow/tensorflow/lite/ios/TensorFlowLiteSelectTfOps.podspec.template
YoungSeok Yoon 5a063c275e Migrate TFLite iOS directories out of experimental
PiperOrigin-RevId: 343958075
Change-Id: I4c7736094f1babab288fb57455e29ab4c0c4fa3d
2020-11-23 17:19:01 -08: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