forked from ccgus/fmdb
-
Notifications
You must be signed in to change notification settings - Fork 1
/
fmdb.podspec
36 lines (31 loc) · 1014 Bytes
/
fmdb.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
34
35
36
Pod::Spec.new do |s|
s.name = 'FMDB'
s.version = '2.1'
s.summary = 'A Cocoa / Objective-C wrapper around SQLite.'
s.homepage = 'https://github.com/ccgus/fmdb'
s.license = 'MIT'
s.author = { 'August Mueller' => '[email protected]' }
s.source = { :git => 'https://github.com/ccgus/fmdb.git',
:tag => 'v2.1' }
s.default_subspec = 'standard'
s.subspec 'common' do |ss|
ss.source_files = 'src/FM*.{h,m}'
ss.exclude_files = 'src/fmdb.m'
end
# use a builtin version of sqlite3
s.subspec 'standard' do |ss|
ss.library = 'sqlite3'
ss.dependency 'FMDB/common'
end
# use a custom built version of sqlite3, with FTS4 enabled
s.subspec 'standalone' do |ss|
ss.dependency 'sqlite3/fts'
ss.dependency 'FMDB/common'
end
# use SQLCipher and enable -DSQLITE_HAS_CODEC flag
s.subspec 'SQLCipher' do |ss|
ss.dependency 'SQLCipher'
ss.dependency 'FMDB/common'
ss.xcconfig = { 'OTHER_CFLAGS' => '$(inherited) -DSQLITE_HAS_CODEC' }
end
end