forked from CocoaDebug/CocoaDebug
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CocoaDebug.podspec
31 lines (31 loc) · 1.43 KB
/
CocoaDebug.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
Pod::Spec.new do |s|
s.name = "CocoaDebug"
s.version = "1.7.7"
s.summary = "iOS Debug Tool"
s.homepage = "https://github.com/CocoaDebug/CocoaDebug"
s.author = {"CocoaDebug" => "[email protected]"}
s.license = "MIT"
s.source_files = "Sources", "Sources/**/*.{h,m,mm,swift,c}"
s.public_header_files = "Sources/**/*.h"
s.resources = "Sources/**/*.{png,xib,storyboard}"
s.frameworks = 'UIKit', 'Foundation', 'JavaScriptCore', 'QuickLook'
s.platform = :ios, "12.0"
s.swift_version = '5.0'
s.source = { :git => "https://github.com/CocoaDebug/CocoaDebug.git", :branch => 'master', :tag => s.version.to_s }
s.requires_arc = false
s.requires_arc =
[
'Sources/App/**/*.m',
'Sources/Categories/**/*.m',
'Sources/Core/**/*.m',
'Sources/CustomHTTPProtocol/**/*.m',
'Sources/Logs/**/*.m',
'Sources/Network/**/*.m',
'Sources/Sandbox/**/*.m',
'Sources/Swizzling/**/*.m',
'Sources/Window/**/*.m',
'Sources/fishhook/**/*.c',
]
# s.dependency "React/Core"
# s.dependency "Protobuf"
end