72 lines
2.6 KiB
Swift
72 lines
2.6 KiB
Swift
// swift-tools-version:5.3
|
|
// The swift-tools-version declares the minimum version of Swift required to build this package.
|
|
|
|
import PackageDescription
|
|
|
|
// For pre-update hook support:
|
|
// - Uncomment lines containing `SQLITE_ENABLE_PREUPDATE_HOOK`
|
|
//
|
|
// For session support:
|
|
// - Uncomment lines containing `SQLITE_ENABLE_PREUPDATE_HOOK`
|
|
// - Uncomment lines containing `SQLITE_ENABLE_SESSION`
|
|
|
|
let package = Package(
|
|
name: "CSQLite",
|
|
products: [
|
|
// Products define the executables and libraries a package produces, and make them visible to other packages.
|
|
.library(
|
|
name: "CSQLite",
|
|
targets: ["CSQLite"]),
|
|
],
|
|
dependencies: [
|
|
// Dependencies declare other packages that this package depends on.
|
|
// .package(url: /* package url */, from: "1.0.0"),
|
|
],
|
|
targets: [
|
|
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
|
|
// Targets can depend on other targets in this package, and on products in packages this package depends on.
|
|
.target(
|
|
name: "CSQLite",
|
|
dependencies: [],
|
|
cSettings: [
|
|
// Compile-time options
|
|
// https://sqlite.org/compile.html#recommended_compile_time_options
|
|
.define("SQLITE_DQS", to: "0"),
|
|
.define("SQLITE_THREADSAFE", to: "0"),
|
|
.define("SQLITE_DEFAULT_MEMSTATUS", to: "0"),
|
|
.define("SQLITE_DEFAULT_WAL_SYNCHRONOUS", to: "1"),
|
|
.define("SQLITE_LIKE_DOESNT_MATCH_BLOBS"),
|
|
.define("SQLITE_MAX_EXPR_DEPTH", to: "0"),
|
|
.define("SQLITE_OMIT_DECLTYPE", to: "1"),
|
|
.define("SQLITE_OMIT_DEPRECATED"),
|
|
.define("SQLITE_OMIT_PROGRESS_CALLBACK", to: "1"),
|
|
.define("SQLITE_OMIT_SHARED_CACHE", to: "1"),
|
|
.define("SQLITE_USE_ALLOCA", to: "1"),
|
|
.define("SQLITE_OMIT_AUTOINIT"),
|
|
// Platform configuration
|
|
// https://sqlite.org/compile.html#_platform_configuration
|
|
.define("HAVE_ISNAN", to: "1"),
|
|
.define("HAVE_USLEEP", to: "1"),
|
|
.define("HAVE_UTIME", to: "1"),
|
|
// Features
|
|
// https://sqlite.org/compile.html#_options_to_enable_features_normally_turned_off
|
|
.define("SQLITE_ENABLE_FTS5", to: "1"),
|
|
// .define("SQLITE_ENABLE_GEOPOLY", to: "1"),
|
|
// .define("SQLITE_ENABLE_ICU", to: "1"),
|
|
.define("SQLITE_ENABLE_MATH_FUNCTIONS", to: "1"),
|
|
// .define("SQLITE_ENABLE_PREUPDATE_HOOK", to: "1"),
|
|
.define("SQLITE_ENABLE_RTREE", to: "1"),
|
|
// .define("SQLITE_ENABLE_SESSION", to: "1"),
|
|
.define("SQLITE_ENABLE_SNAPSHOT", to: "1"),
|
|
.define("SQLITE_ENABLE_STAT4", to: "1"),
|
|
.define("SQLITE_CORE", to: "1")],
|
|
linkerSettings: [
|
|
.linkedLibrary("m")
|
|
]),
|
|
.testTarget(
|
|
name: "CSQLiteTests",
|
|
dependencies: ["CSQLite"])
|
|
],
|
|
cLanguageStandard: .gnu11
|
|
)
|