-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSharkORM.podspec
More file actions
23 lines (21 loc) · 1.04 KB
/
SharkORM.podspec
File metadata and controls
23 lines (21 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = 'SharkORM'
s.version = '{VER}'
s.summary = 'SQLite based ORM for iOS, tvOS & macOS'
s.homepage = 'http://sharkorm.com/'
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "SharkSync.io, (Adrian Herridge, Neil Bostrom)" => "devs@sharksync.io" }
s.social_media_url = "https://twitter.com/sharkorm"
s.ios.deployment_target = "9.0"
#s.osx.deployment_target = "10.8"
#s.tvos.deployment_target = "10.0"
s.source = { :git => "https://github.com/sharksync/SharkORMCore.git", :tag => "v{VER}"}
s.ios.deployment_target = '9.0'
s.ios.vendored_frameworks = 'SharkORM.framework'
s.source_files = "SharkORM.framework/**/*.{h,m,c}"
s.preserve_paths = 'SharkORM.framework'
s.public_header_files = 'SharkORM.framework/**/*.h'
s.vendored_frameworks = 'SharkORM.framework'
s.frameworks = 'Foundation','SharkORM'
s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '$(SRCROOT)/SharkORM/' }
end