forked from ZBar/ZBar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathZBarSDK.podspec.json
55 lines (55 loc) · 1.83 KB
/
ZBarSDK.podspec.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "ZBarSDK",
"version": "1.3.1",
"platforms": {
"ios": null
},
"license": "GNU LGPL 2.1",
"summary": "QR and barcode scan library.",
"homepage": "http://zbar.sourceforge.net/",
"authors": {
"Jeff Brown": "spadix@users.sourceforge.net"
},
"source": {
"git": "git@github.com:ubiregiinc/ZBar.git",
"tag": "ubiregi-1.3.1"
},
"description": "ZBar is an open source software suite for reading bar codes from various sources, such as video streams, image files and raw intensity sensors. It supports many popular symbologies (types of bar codes) including EAN-13/UPC-A, UPC-E, EAN-8, Code 128, Code 39, Interleaved 2 of 5 and QR Code.",
"public_header_files": [
"iphone/**/**/*.h",
"include/*.h"
],
"source_files": [
"include/zbar.h",
"zbar/**/*.h",
"iphone/*.h",
"iphone/include/**/*.h",
"zbar/{config,decoder,error,image,img_scanner,refcnt,scanner,symbol}.c",
"zbar/decoder/{codabar,code39,code93,code128,databar,ean,i25,qr_finder}.c",
"zbar/qrcode/*.c",
"iphone/*.m"
],
"exclude_files": [
"iphone/{ZBarHelpController,ZBarReaderController,ZBarReaderViewController,ZBarCameraSimulator}.m",
"iphone/**/**/{ZBarHelpController,ZBarReaderController,ZBarReaderViewController,ZBarCameraSimulator}.h"
],
"frameworks": [
"AVFoundation",
"CoreGraphics",
"CoreMedia",
"CoreVideo",
"QuartzCore"
],
"resources": [
"iphone/res/PrivacyInfo.xcprivacy"
],
"libraries": "iconv",
"xcconfig": {
"EXCLUDED_SOURCE_FILE_NAMES[sdk=iphoneos*][arch=*]": "ZBarReaderViewImpl_Simulator.m",
"EXCLUDED_SOURCE_FILE_NAMES[sdk=iphonesimulator*][arch=*]": "ZBarReaderViewImpl_Capture.m ZBarCaptureReader.m",
"GCC_PREPROCESSOR_DEFINITIONS": "NDEBUG=1"
},
"prefix_header_file": "iphone/include/prefix.pch",
"compiler_flags": "-w",
"requires_arc": false
}