From d68317fc0d7a986872ebf389f8d09b870fc88a7d Mon Sep 17 00:00:00 2001 From: Pierre Monod-Broca Date: Tue, 30 Jul 2019 14:16:21 +0200 Subject: Add SPM manifest with a library target --- .gitignore | 1 + Package.swift | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 Package.swift 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: "."), + ] +) -- cgit v1.2.3