1 Star 0 Fork 0

LiuZhe/GRDB.swift

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Package.swift 976 Bytes
一键复制 编辑 原始数据 按行查看 历史
Gwendal Roué 提交于 2020-05-31 13:22 . Bump iOS requirement to iOS10+
// swift-tools-version:5.2
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "GRDB",
platforms: [
.iOS("10.0"),
.macOS("10.10"),
.tvOS("9.0"),
.watchOS("2.0"),
],
products: [
.library(name: "GRDB", targets: ["GRDB"]),
],
dependencies: [
],
targets: [
.systemLibrary(
name: "CSQLite",
providers: [.apt(["libsqlite3-dev"])]),
.target(
name: "GRDB",
dependencies: ["CSQLite"],
path: "GRDB"),
.testTarget(
name: "GRDBTests",
dependencies: ["GRDB"],
path: "Tests",
exclude: [
"CocoaPods",
"CustomSQLite",
"Crash",
"Performance",
"SPM",
])
],
swiftLanguageVersions: [.v5]
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/akdacun/GRDB.swift.git
git@gitee.com:akdacun/GRDB.swift.git
akdacun
GRDB.swift
GRDB.swift
master

搜索帮助