File tree Expand file tree Collapse file tree 2 files changed +27
-1
lines changed
Expand file tree Collapse file tree 2 files changed +27
-1
lines changed Original file line number Diff line number Diff line change 1- // swift-tools-version:5.7
1+ // swift-tools-version:5.6
22
33import PackageDescription
44
Original file line number Diff line number Diff line change 1+ // swift-tools-version:5.7
2+
3+ import PackageDescription
4+
5+ var package = Package (
6+ name: " Northwind " ,
7+
8+ platforms: [ . macOS( . v10_15) , . iOS( . v13) ] ,
9+ products: [
10+ . library( name: " Northwind " , targets: [ " Northwind " ] )
11+ ] ,
12+
13+ dependencies: [
14+ . package ( url: " git@github.com:55DB091A-8471-447B-8F50-5DFF4C1B14AC/Lighter.git " ,
15+ branch: " develop " ) ,
16+ . package ( url: " https://github.com/apple/swift-docc-plugin " , from: " 1.0.0 " )
17+ ] ,
18+
19+ targets: [
20+ . target( name : " Northwind " ,
21+ dependencies : [ " Lighter " ] ,
22+ path : " dist " ,
23+ resources : [ . copy( " northwind.db " ) ] ,
24+ plugins : [ . plugin( name: " Enlighter " , package : " Lighter " ) ] )
25+ ]
26+ )
You can’t perform that action at this time.
0 commit comments