-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathAtomGraphics.podspec
More file actions
33 lines (24 loc) · 1.13 KB
/
AtomGraphics.podspec
File metadata and controls
33 lines (24 loc) · 1.13 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
Pod::Spec.new do |s|
s.name = 'AtomGraphics'
s.version = '0.0.1'
s.summary = 'AtomGraphics'
s.description = <<-DESC
This is a Cross-Platform Graphics SDK project
DESC
s.homepage = 'https://code.fineres.com/projects/MO/repos/atom-graphics/browse/AtomGraphics'
s.license = 'MIT'
s.author = { 'neo' => 'neo@fanruan.com' }
s.source = { :git => 'ssh://git@code.fineres.com:7999/MO/atomgraphics.git', :tag => s.version }
s.platform = :ios
s.ios.deployment_target = '8.2'
s.source_files = "AtomGraphics/**/*.{h,m,mm,cpp,inl}"
s.exclude_files = "AtomGraphics/**/android/**/**",
"AtomGraphics/**/v8/**/**",
"AtomGraphics/gpu/**/**",
"AtomGraphics/ipc/**/**",
"AtomGraphics/third_party/**/**"
s.resources = "AtomGraphics/javascript/js/**/*.{js}"
s.pod_target_xcconfig = { "HEADER_SEARCH_PATHS" => "\"$(PODS_TARGET_SRCROOT)/AtomGraphics\"" }
s.frameworks = 'JavaScriptCore','Accelerate'
s.weak_frameworks = 'IOSurface'
end