Mercurial > hgrepos > Python2 > PyMuPDF
comparison mupdf-source/thirdparty/zxing-cpp/zxing-cpp.podspec @ 2:b50eed0cc0ef upstream
ADD: MuPDF v1.26.7: the MuPDF source as downloaded by a default build of PyMuPDF 1.26.4.
The directory name has changed: no version number in the expanded directory now.
| author | Franz Glasner <fzglas.hg@dom66.de> |
|---|---|
| date | Mon, 15 Sep 2025 11:43:07 +0200 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 1:1d09e1dec1d9 | 2:b50eed0cc0ef |
|---|---|
| 1 Pod::Spec.new do |s| | |
| 2 s.name = 'zxing-cpp' | |
| 3 s.version = '2.3.0' | |
| 4 s.summary = 'C++ port of ZXing' | |
| 5 s.homepage = 'https://github.com/zxing-cpp/zxing-cpp' | |
| 6 s.author = 'axxel' | |
| 7 s.readme = 'https://raw.githubusercontent.com/zxing-cpp/zxing-cpp/master/wrappers/ios/README.md' | |
| 8 s.license = { | |
| 9 :type => 'Apache License 2.0', | |
| 10 :file => 'LICENSE' | |
| 11 } | |
| 12 s.source = { | |
| 13 :git => 'https://github.com/zxing-cpp/zxing-cpp.git', | |
| 14 :tag => "v#{s.version}" | |
| 15 } | |
| 16 s.module_name = 'ZXingCpp' | |
| 17 s.platform = :ios, '11.0' | |
| 18 s.library = ['c++'] | |
| 19 s.compiler_flags = '-DZXING_READERS' | |
| 20 s.pod_target_xcconfig = { | |
| 21 'CLANG_CXX_LANGUAGE_STANDARD' => 'c++20' | |
| 22 } | |
| 23 | |
| 24 s.default_subspec = 'Wrapper' | |
| 25 | |
| 26 s.subspec 'Core' do |ss| | |
| 27 ss.source_files = 'core/src/**/*.{h,c,cpp}' | |
| 28 ss.exclude_files = [ 'core/src/libzint/**' ] | |
| 29 ss.private_header_files = 'core/src/**/*.h' | |
| 30 end | |
| 31 | |
| 32 s.subspec 'Wrapper' do |ss| | |
| 33 ss.dependency 'zxing-cpp/Core' | |
| 34 ss.frameworks = 'CoreGraphics', 'CoreImage', 'CoreVideo' | |
| 35 ss.source_files = 'wrappers/ios/Sources/Wrapper/**/*.{h,m,mm}' | |
| 36 ss.public_header_files = 'wrappers/ios/Sources/Wrapper/Reader/{ZXIBarcodeReader,ZXIResult,ZXIPosition,ZXIPoint,ZXIGTIN,ZXIReaderOptions}.h', | |
| 37 'wrappers/ios/Sources/Wrapper/Writer/{ZXIBarcodeWriter,ZXIWriterOptions}.h', | |
| 38 'wrappers/ios/Sources/Wrapper/{ZXIErrors,ZXIFormat}.h' | |
| 39 ss.exclude_files = 'wrappers/ios/Sources/Wrapper/UmbrellaHeader.h' | |
| 40 end | |
| 41 end |
