-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathViewScopeServer.podspec
More file actions
19 lines (19 loc) · 1.01 KB
/
ViewScopeServer.podspec
File metadata and controls
19 lines (19 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |spec|
spec.name = 'ViewScopeServer'
spec.version = '1.2.2'
spec.summary = 'AppKit UI inspection bridge for the ViewScope macOS client.'
spec.description = 'Embed ViewScopeServer into a debug build to inspect native macOS windows and views from ViewScope.'
spec.homepage = 'https://github.com/wangwanjie/ViewScope'
spec.license = { :type => 'MIT', :file => 'LICENSE' }
spec.author = { 'VanJay' => 'vanjay.dev@gmail.com' }
spec.source = { :git => 'https://github.com/wangwanjie/ViewScope.git', :tag => "v#{spec.version}" }
spec.osx.deployment_target = '11.0'
spec.swift_version = '6.0'
spec.requires_arc = true
spec.source_files = 'ViewScopeServer/Sources/ViewScopeServer/**/*.swift', 'ViewScopeServer/Sources/ViewScopeServerBootstrap/*.{h,m}'
spec.public_header_files = 'ViewScopeServer/Sources/ViewScopeServerBootstrap/*.h'
spec.user_target_xcconfig = {
'OTHER_LDFLAGS' => '$(inherited) -Wl,-u,_ViewScopeServerBootstrapAnchor'
}
spec.frameworks = 'AppKit', 'Foundation', 'Network'
end