Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ccgus/fmdb.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Monod-Broca <pierre.monod-broca@laddition.com>2019-07-30 15:16:21 +0300
committerPierre Monod-Broca <pierre.monod-broca@laddition.com>2019-11-18 12:29:20 +0300
commitd68317fc0d7a986872ebf389f8d09b870fc88a7d (patch)
tree541e65395e441f57a497fdb953b15f82855efcb0
parent7397e456a68ee344737bf377b1b76ba4fdd7a1fa (diff)
Add SPM manifest with a library target
-rw-r--r--.gitignore1
-rw-r--r--Package.swift25
2 files changed, 26 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index 838dbb6..f587cd7 100644
--- a/.gitignore
+++ b/.gitignore
@@ -6,3 +6,4 @@ build
fmdb.xcodeproj/*.mode1v3
*.xcodeproj/project.xcworkspace/xcuserdata/
fmdb.xcodeproj/project.xcworkspace
+.swiftpm
diff --git a/Package.swift b/Package.swift
new file mode 100644
index 0000000..bf3b1a4
--- /dev/null
+++ b/Package.swift
@@ -0,0 +1,25 @@
+// swift-tools-version:5.0
+// The swift-tools-version declares the minimum version of Swift required to build this package.
+
+import PackageDescription
+
+let package = Package(
+ name: "FMDB",
+ products: [
+ // Products define the executables and libraries produced by a package, and make them visible to other packages.
+ .library(name: "FMDB", targets: ["FMDB"]),
+ ],
+ 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 which this package depends on.
+ .target(
+ name: "FMDB",
+ dependencies: [],
+ path: "src/fmdb",
+ publicHeadersPath: "."),
+ ]
+)