[Add] ZJSDK 2.5.8.12
[CocoaPods.git] / Specs / 3 / f / 8 / TensorIO / 0.7.1 / TensorIO.podspec.json
blob741f107f96b516ed6947a6f0907c32f4390bab77
2   "name": "TensorIO",
3   "version": "0.7.1",
4   "summary": "An Objective-C and Swift wrapper for TensorFlow Lite and TensorFlow.",
5   "description": "Perform inference with TensorFlow Lite or full TensorFlow models using all the conveniences of Objective-C or Swift",
6   "homepage": "https://github.com/doc-ai/tensorio-ios",
7   "license": {
8     "type": "Apache 2",
9     "file": "LICENSE"
10   },
11   "authors": {
12     "doc.ai": "philip@doc.ai"
13   },
14   "source": {
15     "git": "https://github.com/doc-ai/tensorio-ios.git",
16     "tag": "0.7.1"
17   },
18   "platforms": {
19     "ios": "9.3"
20   },
21   "static_framework": true,
22   "frameworks": [
23     "Foundation",
24     "UIKit",
25     "AVFoundation",
26     "CoreGraphics",
27     "CoreMedia",
28     "CoreVideo",
29     "Accelerate",
30     "VideoToolbox"
31   ],
32   "libraries": "c++",
33   "default_subspecs": "Core",
34   "subspecs": [
35     {
36       "name": "Core",
37       "source_files": "TensorIO/Classes/Core/**/*",
38       "pod_target_xcconfig": {
39         "GCC_PREPROCESSOR_DEFINITIONS": "TIO_CORE=1"
40       }
41     },
42     {
43       "name": "TFLite",
44       "dependencies": {
45         "TensorFlowLite": [
47         ],
48         "TensorIO/Core": [
50         ]
51       },
52       "source_files": "TensorIO/Classes/TFLite/**/*",
53       "xcconfig": {
54         "USER_HEADER_SEARCH_PATHS": "\"${PODS_ROOT}/TensorFlowLite/Frameworks/tensorflow_lite.framework/Headers\""
55       },
56       "pod_target_xcconfig": {
57         "GCC_PREPROCESSOR_DEFINITIONS": "TIO_TFLITE=1"
58       }
59     },
60     {
61       "name": "TensorFlow",
62       "dependencies": {
63         "TensorIOTensorFlow": [
65         ],
66         "TensorIO/Core": [
68         ]
69       },
70       "source_files": "TensorIO/Classes/TensorFlow/**/*",
71       "private_header_files": [
72         "TensorIO/Classes/TensorFlow/SavedModel/**/*.h"
73       ],
74       "xcconfig": {
75         "HEADER_SEARCH_PATHS": "\"${PODS_ROOT}/TensorIOTensorFlow/Frameworks/tensorflow.framework/Headers\"",
76         "OTHER_LDFLAGS": "-force_load \"${PODS_ROOT}/TensorIOTensorFlow/Frameworks/tensorflow.framework/tensorflow\" \"-L ${PODS_ROOT}/TensorIOTensorFlow/Frameworks/tensorflow.framework\""
77       },
78       "pod_target_xcconfig": {
79         "GCC_PREPROCESSOR_DEFINITIONS": "TIO_TENSORFLOW=1"
80       }
81     }
82   ]