File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -24,15 +24,15 @@ let package = Package(
24
24
. package ( url: " https://github.com/apple/swift-nio.git " , from: " 2.35.0 " )
25
25
] ,
26
26
targets: [
27
- . target (
27
+ . executableTarget (
28
28
name: " NIOHTTP2Server " ,
29
29
dependencies: [
30
30
" NIOHTTP2 " ,
31
31
. product( name: " NIOCore " , package : " swift-nio " ) ,
32
32
. product( name: " NIOPosix " , package : " swift-nio " ) ,
33
33
. product( name: " NIOHTTP1 " , package : " swift-nio " ) ,
34
34
] ) ,
35
- . target (
35
+ . executableTarget (
36
36
name: " NIOHTTP2PerformanceTester " ,
37
37
dependencies: [
38
38
" NIOHTTP2 " ,
@@ -73,6 +73,11 @@ let package = Package(
73
73
" NIOHPACK " ,
74
74
. product( name: " NIOCore " , package : " swift-nio " ) ,
75
75
. product( name: " NIOFoundationCompat " , package : " swift-nio " ) ,
76
- ] )
76
+ ] ,
77
+ resources: [
78
+ . copy( " Fixtures/large_complex_huffman_b64.txt " ) ,
79
+ . copy( " Fixtures/large_huffman_b64.txt " ) ,
80
+ ]
81
+ )
77
82
]
78
83
)
You can’t perform that action at this time.
0 commit comments