-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathSQLClient.podspec
More file actions
23 lines (18 loc) · 838 Bytes
/
SQLClient.podspec
File metadata and controls
23 lines (18 loc) · 838 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = 'SQLClient'
s.version = '1.0.0'
s.license = 'MIT'
s.summary = 'An Objective-C wrapper around the open-source FreeTDS library'
s.homepage = 'https://github.com/martinrybak/SQLClient'
s.authors = { 'Martin Rybak' => 'martin.rybak@gmail.com' }
s.source = { :git => 'https://github.com/martinrybak/SQLClient.git', :tag => s.version.to_s }
s.source_files = 'SQLClient/SQLClient/SQLClient/*.{h,m}'
s.libraries = 'iconv'
s.requires_arc = true
s.ios.deployment_target = '7.0'
s.ios.vendored_libraries = 'SQLClient/SQLClient/SQLClient/libsybdb-ios.a'
s.osx.deployment_target = '10.7'
s.osx.vendored_libraries = 'SQLClient/SQLClient/SQLClient/libsybdb-osx.a'
s.tvos.deployment_target = '9.0'
s.tvos.vendored_libraries = 'SQLClient/SQLClient/SQLClient/libsybdb-ios.a'
end