9 lines
205 B
Swift
9 lines
205 B
Swift
// Export the underlying SQLite library
|
|
#if SWIFT_PACKAGE
|
|
@_exported import CSQLite
|
|
#elseif GRDBCIPHER
|
|
@_exported import SQLCipher
|
|
#elseif !GRDBCUSTOMSQLITE && !GRDBCIPHER
|
|
@_exported import SQLite3
|
|
#endif
|