forked from KeystoneHQ/ur-registry-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
UrRegistryFfi.podspec
25 lines (25 loc) · 1.03 KB
/
UrRegistryFfi.podspec
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
Pod::Spec.new { |spec|
spec.name = 'UrRegistryFfi'
spec.version = '0.1.0'
spec.summary = 'UNKNOWN'
spec.authors = {
}
spec.license = { :type => 'UNKNOWN' }
spec.homepage = 'UNKNOWN'
spec.macos.deployment_target = '10.10'
spec.ios.deployment_target = '8.0'
spec.pod_target_xcconfig = {
'ENABLE_BITCODE' => 'NO',
'LIBRARY_SEARCH_PATHS[sdk=iphoneos*][arch=arm64]' => '${PODS_TARGET_SRCROOT}/dist/aarch64-apple-ios',
'LIBRARY_SEARCH_PATHS[sdk=iphonesimulator*][arch=x86_64]' => '${PODS_TARGET_SRCROOT}/dist/x86_64-apple-ios',
'LIBRARY_SEARCH_PATHS[sdk=iphonesimulator*][arch=arm64]' => '${PODS_TARGET_SRCROOT}/dist/aarch64-apple-ios-sim',
'LIBRARY_SEARCH_PATHS[sdk=macos*][arch=x86_64]' => '${PODS_TARGET_SRCROOT}/dist/x86_64-apple-darwin',
'LIBRARY_SEARCH_PATHS[sdk=macos*][arch=arm64]' => '${PODS_TARGET_SRCROOT}/dist/aarch64-apple-darwin',
'OTHER_LDFLAGS' => '-lur_registry_ffi',
}
spec.preserve_paths = ['dist/**/*']
spec.source_files = ['src/**/*']
spec.source = {
:http => 'UNKNOWN',
}
}