File tree 1 file changed +10
-4
lines changed 1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -11,10 +11,16 @@ let package = Package(
11
11
name: " AccelerateArray " ,
12
12
targets: [ " AccelerateArray " ] ) ,
13
13
] ,
14
- dependencies: [
15
- // Dependencies declare other packages that this package depends on.
16
- // .package(url: /* package url */, from: "1.0.0"),
17
- ] ,
14
+ dependencies: {
15
+ // https://apple.github.io/swift-docc-plugin/documentation/swiftdoccplugin/
16
+ var deps : [ PackageDescription . Package . Dependency ] = [ ]
17
+ #if swift(>=5.6.0)
18
+ deps. append (
19
+ . package ( url: " https://github.com/apple/swift-docc-plugin " , from: " 1.3.0 " )
20
+ )
21
+ #endif
22
+ return deps
23
+ } ( ) ,
18
24
targets: [
19
25
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
20
26
// Targets can depend on other targets in this package, and on products in packages which this package depends
You can’t perform that action at this time.
0 commit comments