-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhippy_hermes.podspec
22 lines (21 loc) · 1020 Bytes
/
hippy_hermes.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = 'hippy_hermes'
s.version = '1.0.3'
s.summary = 'hermes engine for hippy'
s.description = 'version of hermes 0.76'
s.homepage = 'https://github.com/hippy-contrib/hippy-hermes-bin'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Author' => '[email protected]' }
s.source = { :git => 'https://github.com/hippy-contrib/hippy-hermes-bin.git', :tag => s.version.to_s }
s.platform = :ios, '12.0'
s.source_files = 'NoDebugger/destroot/**/*.{h,m,swift}'
s.public_header_files = "NoDebugger/destroot/include/**/*.h"
s.header_mappings_dir = "NoDebugger/destroot/include"
s.pod_target_xcconfig = {
'CLANG_CXX_LANGUAGE_STANDARD' => 'c++17',
'HEADER_SEARCH_PATHS' => '$(PODS_TARGET_SRCROOT)/NoDebugger/destroot/include',
'GCC_ENABLE_CPP_EXCEPTIONS' => true,
'GCC_ENABLE_CPP_RTTI' => true,
}
s.ios.vendored_frameworks = "NoDebugger/destroot/Library/Frameworks/universal/hermes.xcframework"
end