File tree Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Original file line number Diff line number Diff line change 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+ )
You can’t perform that action at this time.
0 commit comments