forked from michbil/react-native-maps
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreact-native-maps.podspec
More file actions
49 lines (36 loc) · 1.54 KB
/
react-native-maps.podspec
File metadata and controls
49 lines (36 loc) · 1.54 KB
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
require 'json'
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
folly_version = '2021.06.28.00-v2'
folly_compiler_flags = '-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32'
fabric_enabled = ENV['RCT_NEW_ARCH_ENABLED'] == '1'
fabric_flags = ''
if fabric_enabled
fabric_flags = '-DRN_FABRIC_ENABLED -DRCT_NEW_ARCH_ENABLED'
end
Pod::Spec.new do |s|
s.subspec "Fabric" do |ss|
ss.source_files = "ios/AirMaps/Fabric/*.{h,mm}"
end
s.name = "react-native-maps"
s.version = package['version']
s.summary = "React Native Mapview component for iOS + Android"
s.authors = { "intelligibabble" => "leland.m.richardson@gmail.com" }
s.homepage = "https://github.com/react-native-maps/react-native-maps#readme"
s.license = "MIT"
s.platform = :ios, "11.0"
s.source = { :git => "https://github.com/react-native-maps/react-native-maps.git", :tag=> "v#{s.version}" }
s.source_files = "ios/AirMaps/**/*.{h,m,mm}"
s.exclude_files = "ios/AirMaps/Fabric/*.{h,mm}"
s.compiler_flags = folly_compiler_flags + " " + fabric_flags
s.pod_target_xcconfig = {
"HEADER_SEARCH_PATHS" => "\"$(PODS_ROOT)/boost\"",
"CLANG_CXX_LANGUAGE_STANDARD" => "c++17"
}
s.dependency "React-Core"
s.dependency "React-RCTFabric" # This is for fabric component
s.dependency "React-Codegen"
s.dependency "RCT-Folly", folly_version
s.dependency "RCTRequired"
s.dependency "RCTTypeSafety"
s.dependency "ReactCommon/turbomodule/core"
end