File tree Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change
1
+ // swift-tools-version:5.0
2
+ // The swift-tools-version declares the minimum version of Swift required to build this package.
3
+ import PackageDescription
4
+
5
+ let package = Package (
6
+ name: " Masonry " ,
7
+ platforms: [
8
+ . macOS( . v10_11) ,
9
+ . iOS( . v9) ,
10
+ . tvOS( . v9)
11
+ ] ,
12
+ products: [
13
+ // Products define the executables and libraries a package produces, and make them visible to other packages.
14
+ . library(
15
+ name: " Masonry " ,
16
+ targets: [ " Masonry " ] )
17
+ ] ,
18
+ targets: [
19
+ // Targets are the basic building blocks of a package. A target can define a module or a test suite.
20
+ // Targets can depend on other targets in this package, and on products in packages this package depends on.
21
+ . target(
22
+ name: " Masonry " ,
23
+ path: " . " ,
24
+ exclude: [ " Masonry/Info.plist " ] ,
25
+ sources: [ " Masonry " ] ,
26
+ publicHeadersPath: " Masonry "
27
+ )
28
+ ]
29
+ )
You can’t perform that action at this time.
0 commit comments