-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathWasmPatch.podspec
More file actions
37 lines (26 loc) · 1.28 KB
/
WasmPatch.podspec
File metadata and controls
37 lines (26 loc) · 1.28 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
Pod::Spec.new do |spec|
spec.name = "WasmPatch"
spec.version = "0.1.0"
spec.summary = "WebAssembly-driven hot patching for iOS and macOS Objective-C apps."
spec.description = <<-DESC
WasmPatch bridges Objective-C and WebAssembly. It compiles patch logic into
WebAssembly modules, loads them at runtime, and dynamically calls or replaces
Objective-C methods for hot-fix and feature delivery scenarios.
DESC
spec.homepage = "https://github.com/everettjf/WasmPatch"
# spec.screenshots = "www.example.com/screenshots_1.gif", "www.example.com/screenshots_2.gif"
spec.license = "MIT"
# spec.license = { :type => "MIT", :file => "FILE_LICENSE" }
spec.author = { "everettjf" => "everettjf@live.com" }
spec.ios.deployment_target = "10.0"
spec.osx.deployment_target = "10.14"
spec.source = { :git => "https://github.com/everettjf/WasmPatch.git", :tag => "#{spec.version}" }
spec.source_files = "WasmPatch/Classes/**/*"
spec.exclude_files = "WasmPatch/Classes/**/*.txt", "WasmPatch/Classes/**/CMakeLists.txt"
spec.public_header_files = "WasmPatch/Classes/*.h"
spec.library = 'c++'
spec.xcconfig = {
'CLANG_CXX_LANGUAGE_STANDARD' => 'c++17',
'CLANG_CXX_LIBRARY' => 'libc++'
}
end