File tree Expand file tree Collapse file tree 1 file changed +9
-12
lines changed
Expand file tree Collapse file tree 1 file changed +9
-12
lines changed Original file line number Diff line number Diff line change @@ -5,18 +5,15 @@ import PackageDescription
55
66let package = Package (
77 name: " TerminalKit " ,
8- dependencies: [
9- // Dependencies declare other packages that this package depends on.
10- // .package(url: "https://github.com/bugkingK/TerminalKit", from: "0.0.2"),
8+ platforms: [
9+ . macOS( . v10_10)
10+ ] ,
11+ products: [
12+ . library( name: " TerminalKit " , targets: [ " TerminalKit " ] )
1113 ] ,
1214 targets: [
13- // Targets are the basic building blocks of a package. A target can define a module or a test suite.
14- // Targets can depend on other targets in this package, and on products in packages which this package depends on.
15- . target(
16- name: " TerminalKit " ,
17- dependencies: [ ] ) ,
18- . testTarget(
19- name: " TerminalKitTests " ,
20- dependencies: [ " TerminalKit " ] ) ,
21- ]
15+ . target( name: " TerminalKit " , dependencies: [ ] ) ,
16+ . testTarget( name: " TerminalKitTests " , dependencies: [ " TerminalKit " ] )
17+ ] ,
18+ swiftLanguageVersions: [ . v5]
2219)
You can’t perform that action at this time.
0 commit comments