This repository has been archived by the owner on Jun 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 49
/
Office365.podspec
89 lines (69 loc) · 2.34 KB
/
Office365.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
Pod::Spec.new do |s|
s.name = "Office365"
s.version = "0.12.0"
s.summary = "Client libraries for calling Office 365 service APIs from iOS apps."
s.description = <<-DESC
Client libraries for calling Office 365 service APIs from iOS apps.
These libraries are in preview.
DESC
s.homepage = "http://github.com/OfficeDev/Office-365-SDK-for-iOS"
s.license = "Apache License, Version 2.0"
s.author = { "joshgav" => "[email protected]" }
s.social_media_url = "http://twitter.com/OpenAtMicrosoft"
s.platform = :ios
s.ios.deployment_target = "8.0"
s.source = { :git => "https://github.com/OfficeDev/Office-365-SDK-for-iOS.git",
:tag => "v#{s.version}"
}
s.exclude_files = "**/Build/**/*"
s.requires_arc = true
s.dependency "orc"
s.source_files = "sdk/**/*.{h,m}"
# --- Subspecs ------------------------------------------------------------------#
s.subspec "DirectoryServices" do |subspec|
subspec.source_files = "sdk/DirectoryServices/**/*.{h,m}"
subspec.public_header_files = "sdk/DirectoryServices/**/*.h"
subspec.header_dir = "DirectoryServices"
end
s.subspec "Discovery" do |subspec|
subspec.source_files = "sdk/Discovery/**/*.{h,m}"
subspec.public_header_files = "sdk/Discovery/**/*.h"
subspec.header_dir = "Discovery"
end
s.subspec "Files" do |subspec|
subspec.source_files = "sdk/Files/**/*.{h,m}"
subspec.public_header_files = "sdk/Files/**/*.h"
subspec.header_dir = "Files"
end
s.subspec "Graph" do |subspec|
subspec.source_files = "sdk/Graph/**/*.{h,m}"
subspec.public_header_files = "sdk/Graph/**/*.h"
subspec.header_dir = "Graph"
end
s.subspec "OneNote" do |subspec|
subspec.source_files = "sdk/OneNote/**/*.{h,m}"
subspec.public_header_files = "sdk/OneNote/**/*.h"
subspec.header_dir = "OneNote"
end
s.subspec "Outlook" do |subspec|
subspec.source_files = "sdk/Outlook/**/*.{h,m}"
subspec.public_header_files = "sdk/Outlook/**/*.h"
subspec.header_dir = "Outlook"
end
s.subspec "SampleService" do |subspec|
subspec.source_files = "sdk/SampleService/**/*.{h,m}"
subspec.public_header_files = "sdk/SampleService/**/*.h"
subspec.header_dir = "SampleService"
end
end
end
end
end
end
end
end
end
end
end
end
end