-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCapacitorWasmAgentTools.podspec
More file actions
25 lines (20 loc) · 1.11 KB
/
CapacitorWasmAgentTools.podspec
File metadata and controls
25 lines (20 loc) · 1.11 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
require 'json'
package = JSON.parse(File.read(File.join(File.dirname(__FILE__), 'package.json')))
Pod::Spec.new do |s|
s.name = 'CapacitorWasmAgentTools'
s.version = package['version']
s.summary = package['description']
s.license = package['license']
s.homepage = 'https://github.com/techxagon/capacitor-wasm-agent-tools'
s.author = 'Techxagon'
s.source = { :git => 'https://github.com/techxagon/capacitor-wasm-agent-tools.git', :tag => s.version.to_s }
s.source_files = 'ios/Sources/**/*.swift'
s.ios.deployment_target = '14.0'
s.dependency 'Capacitor'
s.swift_version = '5.9'
s.vendored_frameworks = 'ios/Frameworks/WasmAgentToolsFFI.xcframework'
s.pod_target_xcconfig = {
'OTHER_SWIFT_FLAGS[sdk=iphoneos*]' => '$(inherited) -Xcc -fmodule-map-file=${PODS_TARGET_SRCROOT}/ios/Frameworks/WasmAgentToolsFFI.xcframework/ios-arm64/Headers/wasm_agent_tools_ffiFFI.modulemap',
'OTHER_SWIFT_FLAGS[sdk=iphonesimulator*]' => '$(inherited) -Xcc -fmodule-map-file=${PODS_TARGET_SRCROOT}/ios/Frameworks/WasmAgentToolsFFI.xcframework/ios-arm64-simulator/Headers/wasm_agent_tools_ffiFFI.modulemap',
}
end