-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathSqlable.podspec
33 lines (28 loc) · 1.18 KB
/
Sqlable.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
30
31
32
33
Pod::Spec.new do |s|
s.name = "Sqlable"
s.version = "1.1.0"
s.summary = "Swift ORM framework."
s.description = <<-DESC
Sqlable is a Swift ORM framework.
DESC
s.homepage = "https://github.com/Meniny/Sqlable"
s.license = { :type => "MIT", :file => "LICENSE.md" }
s.author = { "Elias Abel" => "admin@meniny.cn" }
s.source = { :git => "https://github.com/Meniny/Sqlable.git", :tag => s.version.to_s }
s.social_media_url = 'https://meniny.cn/'
s.module_name = 'Sqlable'
s.ios.deployment_target = "8.0"
s.tvos.deployment_target = "9.1"
s.osx.deployment_target = "10.10"
s.watchos.deployment_target = "2.2"
s.swift_version = '5.0'
s.pod_target_xcconfig = { 'SWIFT_VERSION' => s.swift_version.to_s }
s.source_files = 'Sqlable/**/*.{swift}'
# s.private_header_files = 'Sqlable/**/*.h'
s.library = 'sqlite3'
s.xcconfig = { 'OTHER_SWIFT_FLAGS' => '$(inherited) -DSQLITE_SWIFT_STANDALONE' }
# s.xcconfig = {
# 'OTHER_SWIFT_FLAGS' => '$(inherited) -DSQLITE_SWIFT_SQLCIPHER',
# 'GCC_PREPROCESSOR_DEFINITIONS' => '$(inherited) SQLITE_HAS_CODEC=1'
# }
end