forked from goodow/GDLiveStreaming
-
Notifications
You must be signed in to change notification settings - Fork 0
/
glm.podspec
29 lines (23 loc) · 1.02 KB
/
glm.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
Pod::Spec.new do |s|
s.name = "glm"
s.module_name = "glm"
s.version = "0.9.7.4"
s.summary = "OpenGL Mathematics"
s.description = <<-DESC
OpenGL Mathematics is a header only C++ mathematics library for graphics software based on the OpenGL Shading Language specifications.
DESC
s.homepage = "http://glm.g-truc.net"
s.license = {:type => 'MIT', :file => 'copying.txt' }
s.authors = { "Christophe Riccio" => "[email protected]"}
s.source = { :git => "https://github.com/g-truc/glm.git", :tag => s.version.to_s }
s.requires_arc = false
s.header_dir = "glm"
s.header_mappings_dir = "glm"
s.libraries = 'c++'
s.ios.deployment_target = '5.0'
s.osx.deployment_target = '10.7'
s.source_files = 'glm/**/*{.h,.hpp}'
s.xcconfig = { 'LIBRARY_SEARCH_PATHS' => '$(PODS_ROOT)/glm' }
s.preserve_paths = 'glm/**/*{.h,.hpp,.inl}'
s.public_header_files = 'glm/**/*{.h,.hpp,.inl}'
end