blob: 5c91fbc69ebbd2e8c96dc35e8b731035c10a38f8 [file] [log] [blame]
{
"name": "CCSQLite",
"version": "1.0.0",
"summary": "A Cocoa / Objective-C wrapper around SQLite. YapDatabase(key/value store) + FMDB (ARC)",
"homepage": "https://github.com/ccworld1000/CCSQLite",
"license": {
"type": "MIT",
"file": "LICENSE.txt"
},
"authors": {
"CC": "ccworld1000@gmail.com"
},
"source": {
"git": "https://github.com/ccworld1000/CCSQLite.git",
"tag": "1.0.0"
},
"requires_arc": true,
"default_subspecs": "standard",
"platforms": {
"ios": "7.0",
"osx": "10.9"
},
"subspecs": [
{
"name": "standard",
"libraries": "sqlite3",
"source_files": "CCSQLite/*.{h,m}",
"xcconfig": {
"OTHER_CFLAGS": "$(inherited)"
}
},
{
"name": "SQLCipher",
"dependencies": {
"SQLCipher": [
]
},
"source_files": "CCSQLite/*.{h,m}",
"xcconfig": {
"OTHER_CFLAGS": "$(inherited) -DSQLITE_HAS_CODEC -DHAVE_USLEEP=1"
}
}
]
}