[Add] ZJSDK 2.5.5.0
[CocoaPods.git] / Specs / 3 / f / 8 / TensorIO / 0.9.8 / TensorIO.podspec.json
blobfefd02995d818dda476bfcbf769598c67a8ec5e2
2   "name": "TensorIO",
3   "version": "0.9.8",
4   "summary": "An Objective-C and Swift wrapper for TensorFlow Lite and TensorFlow, with support for Federated Learning.",
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.9.8"
17   },
18   "platforms": {
19     "ios": "12.0"
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   "dependencies": {
34     "DSJSONSchemaValidation": [
36     ]
37   },
38   "default_subspecs": "Core",
39   "subspecs": [
40     {
41       "name": "Core",
42       "source_files": "TensorIO/Classes/Core/**/*",
43       "pod_target_xcconfig": {
44         "GCC_PREPROCESSOR_DEFINITIONS": "TIO_CORE=1 TIO_VERSION=0.9.8"
45       }
46     },
47     {
48       "name": "TFLite",
49       "dependencies": {
50         "TensorIO/Core": [
52         ],
53         "TensorFlowLite": [
55         ]
56       },
57       "source_files": "TensorIO/Classes/TFLite/**/*",
58       "private_header_files": [
59         "TensorIO/Classes/TFLite/TIOTFLiteData/**/*.h"
60       ],
61       "resource_bundles": {
62         "TFLite": "TensorIO/Assets/TFLite/**/*"
63       },
64       "xcconfig": {
65         "USER_HEADER_SEARCH_PATHS": "\"${PODS_ROOT}/TensorFlowLite/Frameworks/tensorflow_lite.framework/Headers\""
66       },
67       "pod_target_xcconfig": {
68         "GCC_PREPROCESSOR_DEFINITIONS": "TIO_TFLITE=1"
69       }
70     },
71     {
72       "name": "TensorFlow",
73       "dependencies": {
74         "TensorIO/Core": [
76         ],
77         "TensorIOTensorFlow": [
79         ]
80       },
81       "source_files": "TensorIO/Classes/TensorFlow/**/*",
82       "private_header_files": [
83         "TensorIO/Classes/TensorFlow/SavedModel/**/*.h",
84         "TensorIO/Classes/TensorFlow/TIOTensorFlowData/**/*.h"
85       ],
86       "resource_bundles": {
87         "TensorFlow": "TensorIO/Assets/TensorFlow/**/*"
88       },
89       "xcconfig": {
90         "HEADER_SEARCH_PATHS": "\"${PODS_ROOT}/TensorIOTensorFlow/Frameworks/tensorflow.framework/Headers\"",
91         "OTHER_LDFLAGS": "-force_load \"${PODS_ROOT}/TensorIOTensorFlow/Frameworks/tensorflow.framework/tensorflow\" \"-L ${PODS_ROOT}/TensorIOTensorFlow/Frameworks/tensorflow.framework\""
92       },
93       "pod_target_xcconfig": {
94         "GCC_PREPROCESSOR_DEFINITIONS": "TIO_TENSORFLOW=1"
95       }
96     }
97   ]