-
-
Notifications
You must be signed in to change notification settings - Fork 50
/
JSDebugger.podspec
33 lines (26 loc) · 1.16 KB
/
JSDebugger.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
26
27
28
29
30
31
32
33
Pod::Spec.new do |s|
s.name = 'JSDebugger'
s.version = '0.1.0'
s.summary = 'JavaScript-Based Debugger For Inspecting Running State Of Your Application'
s.description = <<-DESC
JavaScript-Based Debugger For Inspecting Running State Of Your Application
DESC
s.homepage = 'https://github.com/SatanWoo/JSDebugger'
s.license = { :type => 'GPL', :file => 'LICENSE' }
s.author = { 'SatanWoo' => '[email protected]' }
s.source = { :git => 'https://github.com/SatanWoo/JSDebugger.git', :tag => s.version.to_s }
s.ios.deployment_target = '9.0'
s.platform = :ios, '9.0'
s.module_map = 'Source/JSDebugger.modulemap'
s.frameworks = ["JavaScriptCore"]
s.libraries = 'c++'
s.requires_arc = true
s.exclude_files = 'Source/Core/Plugin/Plugin/JDChoose.mm'
s.subspec 'no-arc' do |smrc|
smrc.source_files = 'Source/Core/Plugin/Plugin/JDChoose.mm'
smrc.requires_arc = false
end
s.source_files = 'Source/**/*'
s.public_header_files = ['Source/FileWatcher/*.h', 'Source/Core/JDEngine.h', 'Source/JSDebugger.h']
s.vendored_libraries = 'Source/Core/FFI/Vendor/libffi.a'
end