Skip to content

Commit 1bbeb0c

Browse files
committed
Create Package.swift
1 parent f2f3e50 commit 1bbeb0c

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

Package.swift

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
// swift-tools-version:5.2
2+
// The swift-tools-version declares the minimum version of Swift required to build this package.
3+
4+
import PackageDescription
5+
6+
let package = Package(
7+
name: "MapScaleView",
8+
platforms: [.iOS(.v10)],
9+
products: [
10+
// Products define the executables and libraries produced by a package, and make them visible to other packages.
11+
.library(
12+
name: "MapScaleView",
13+
targets: ["MapScaleView"]),
14+
],
15+
dependencies: [
16+
// Dependencies declare other packages that this package depends on.
17+
// .package(url: "", .upToNextMajor(from: "")),
18+
],
19+
targets: [
20+
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
21+
// Targets can depend on other targets in this package, and on products in packages which this package depends on.
22+
.target(
23+
name: "MapScaleView",
24+
path: "MapScaleView_iOS_API/Sources"),
25+
],
26+
swiftLanguageVersions: [.v5]
27+
)

0 commit comments

Comments
 (0)