forked from hulab/POLocalizedString
-
Notifications
You must be signed in to change notification settings - Fork 0
/
POLocalizedString.podspec
25 lines (20 loc) · 1 KB
/
POLocalizedString.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
Pod::Spec.new do |s|
s.name = 'POLocalizedString'
s.version = '1.1.6'
s.license = 'MIT'
s.homepage = 'https://github.com/hulab/POLocalizedString'
s.authors = { 'Maxime Epain' => '[email protected]' }
s.summary = 'Gettext for iOS/OS X/watchOS/tvOS'
s.source = { :git => 'https://github.com/hulab/POLocalizedString.git', :tag => s.version.to_s, :submodules => true }
s.source_files = 'POLocalizedString/*.{h,m,mm,swift}', 'muParser/src/*.cpp', 'muParser/include/*.h'
s.exclude_files = 'muParser/src/muParserTest.cpp', 'muParser/src/muParserTest.h'
s.private_header_files = 'muParser/include/*.h'
s.framework = 'Foundation'
s.libraries = 'c++'
s.requires_arc = true
s.platform = :ios, :osx, :tvos, :watchos
s.ios.deployment_target = '10.0'
s.osx.deployment_target = '10.9'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '4.0'
end