-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFTMacOSSDK.podspec
More file actions
39 lines (25 loc) · 1.39 KB
/
FTMacOSSDK.podspec
File metadata and controls
39 lines (25 loc) · 1.39 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
38
39
Pod::Spec.new do |spec|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
# These will help people to find your library, and whilst it
# can feel like a chore to fill in it's definitely to your advantage. The
# summary should be tweet-length, and the description more in depth.
#
spec.name = "FTMacOSSDK"
# spec.version = "1.0.0-alpha.1"
spec.version = "$JENKINS_DYNAMIC_VERSION"
spec.summary = "TrueWatchTech macOS Data Collection SDK"
#spec.description = ""
spec.homepage = "https://github.com/TrueWatchTech/datakit-macos"
spec.license = { type: 'Apache', :file => 'LICENSE'}
spec.user_target_xcconfig = { 'CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES' => 'YES' }
spec.author = { "hulilei" => "hulilei@truewatchyun.com","BrandonZhang"=> "zhangbo@truewatchyun.com" }
spec.osx.deployment_target = '10.13'
spec.requires_arc = true
spec.source = { :git => "https://github.com/TrueWatchTech/datakit-macos.git", :tag => "$JENKINS_DYNAMIC_VERSION" }
spec.default_subspec = "SDKCore"
spec.subspec 'SDKCore' do |core|
core.source_files = "FTMacOSSDK/SDKCore/**/*.{h,m}"
core.dependency 'FTMobileSDK/FTSDKCore', '1.4.9-alpha.1'
end
end