-
Notifications
You must be signed in to change notification settings - Fork 421
Expand file tree
/
Copy pathLookinShared.podspec
More file actions
23 lines (23 loc) · 915 Bytes
/
LookinShared.podspec
File metadata and controls
23 lines (23 loc) · 915 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |spec|
spec.name = "LookinShared"
spec.version = "1.2.8"
spec.summary = "The shared files between client and server side of Lookin."
spec.description = "Embed this framework into your iOS project to enable Lookin mac app."
spec.homepage = "https://lookin.work"
spec.license = "GPL-3.0"
spec.author = { "Li Kai" => "lookin@lookin.work" }
spec.ios.deployment_target = "9.0"
spec.tvos.deployment_target = '9.0'
spec.macos.deployment_target = "10.14"
spec.visionos.deployment_target = "1.0"
spec.source = { :git => "https://github.com/QMUI/LookinServer.git", :tag => "1.2.8"}
#spec.framework = "UIKit"
spec.requires_arc = true
spec.source_files = [
'Src/Main/Shared/**/*',
'Src/Base/**/*'
]
spec.pod_target_xcconfig = {
'GCC_PREPROCESSOR_DEFINITIONS' => '$(inherited) SHOULD_COMPILE_LOOKIN_SERVER=1'
}
end