@@ -13,7 +13,8 @@ let package = Package(
13
13
products: [
14
14
. library( name: " AsyncAlgorithms " , targets: [ " AsyncAlgorithms " ] ) ,
15
15
. library( name: " AsyncSequenceValidation " , targets: [ " AsyncSequenceValidation " ] ) ,
16
- . library( name: " _CAsyncSequenceValidationSupport " , type: . static, targets: [ " AsyncSequenceValidation " ] )
16
+ . library( name: " _CAsyncSequenceValidationSupport " , type: . static, targets: [ " AsyncSequenceValidation " ] ) ,
17
+ . library( name: " AsyncAlgorithms_XCTest " , targets: [ " AsyncAlgorithms_XCTest " ] ) ,
17
18
] ,
18
19
dependencies: [ ] ,
19
20
targets: [
@@ -22,9 +23,17 @@ let package = Package(
22
23
name: " AsyncSequenceValidation " ,
23
24
dependencies: [ " _CAsyncSequenceValidationSupport " , " AsyncAlgorithms " ] ) ,
24
25
. systemLibrary( name: " _CAsyncSequenceValidationSupport " ) ,
26
+ . target(
27
+ name: " AsyncAlgorithms_XCTest " ,
28
+ dependencies: [ " AsyncAlgorithms " , " AsyncSequenceValidation " ] ,
29
+ swiftSettings: [
30
+ . unsafeFlags( [
31
+ " -Xfrontend " , " -disable-availability-checking "
32
+ ] )
33
+ ] ) ,
25
34
. testTarget(
26
35
name: " AsyncAlgorithmsTests " ,
27
- dependencies: [ " AsyncAlgorithms " , " AsyncSequenceValidation " ] ,
36
+ dependencies: [ " AsyncAlgorithms " , " AsyncSequenceValidation " , " AsyncAlgorithms_XCTest " ] ,
28
37
swiftSettings: [
29
38
. unsafeFlags( [
30
39
" -Xfrontend " , " -disable-availability-checking "
0 commit comments