3
3
//
4
4
// This source file is part of the Swift Numerics open source project
5
5
//
6
- // Copyright (c) 2019 Apple Inc. and the Swift Numerics project authors
6
+ // Copyright (c) 2019 - 2020 Apple Inc. and the Swift Numerics project authors
7
7
// Licensed under Apache License v2.0 with Runtime Library Exception
8
8
//
9
9
// See https://swift.org/LICENSE.txt for license information
@@ -15,21 +15,21 @@ import PackageDescription
15
15
let package = Package (
16
16
name: " swift-numerics " ,
17
17
products: [
18
- . library( name: " BigInt " , targets: [ " BigInt " ] ) ,
18
+ . library( name: " BigIntModule " , targets: [ " BigIntModule " ] ) ,
19
19
. library( name: " Complex " , targets: [ " Complex " ] ) ,
20
20
. library( name: " Numerics " , targets: [ " Numerics " ] ) ,
21
21
. library( name: " Real " , targets: [ " Real " ] ) ,
22
22
] ,
23
23
dependencies: [
24
24
] ,
25
25
targets: [
26
- . target( name: " BigInt " , dependencies: [ ] ) ,
26
+ . target( name: " BigIntModule " , dependencies: [ ] ) ,
27
27
. target( name: " Complex " , dependencies: [ " Real " ] ) ,
28
- . target( name: " Numerics " , dependencies: [ " BigInt " , " Complex " , " Real " ] ) ,
28
+ . target( name: " Numerics " , dependencies: [ " BigIntModule " , " Complex " , " Real " ] ) ,
29
29
. target( name: " NumericsShims " , dependencies: [ ] ) ,
30
30
. target( name: " Real " , dependencies: [ " NumericsShims " ] ) ,
31
31
32
- . testTarget( name: " BigIntTests " , dependencies: [ " BigInt " ] ) ,
32
+ . testTarget( name: " BigIntTests " , dependencies: [ " BigIntModule " ] ) ,
33
33
. testTarget( name: " ComplexTests " , dependencies: [ " Complex " , " NumericsShims " ] ) ,
34
34
. testTarget( name: " RealTests " , dependencies: [ " Real " ] ) ,
35
35
]
0 commit comments