@@ -298,7 +298,7 @@ final class BuildPlanTests: XCTestCase {
298
298
url: " /ExtPkg " ,
299
299
packageKind: . remote,
300
300
products: [
301
- ProductDescription ( name: " ExtLib " , targets: [ " ExtLib " ] ) ,
301
+ ProductDescription ( name: " ExtLib " , type : . library ( . automatic ) , targets: [ " ExtLib " ] ) ,
302
302
] ,
303
303
targets: [
304
304
TargetDescription ( name: " ExtLib " , dependencies: [ ] ) ,
@@ -393,7 +393,7 @@ final class BuildPlanTests: XCTestCase {
393
393
url: " /B " ,
394
394
packageKind: . local,
395
395
products: [
396
- ProductDescription ( name: " BLibrary " , targets: [ " BTarget " ] ) ,
396
+ ProductDescription ( name: " BLibrary " , type : . library ( . automatic ) , targets: [ " BTarget " ] ) ,
397
397
] ,
398
398
targets: [
399
399
TargetDescription ( name: " BTarget " , dependencies: [ ] ) ,
@@ -500,7 +500,7 @@ final class BuildPlanTests: XCTestCase {
500
500
url: " /ExtPkg " ,
501
501
packageKind: . local,
502
502
products: [
503
- ProductDescription ( name: " ExtPkg " , targets: [ " extlib " ] ) ,
503
+ ProductDescription ( name: " ExtPkg " , type : . library ( . automatic ) , targets: [ " extlib " ] ) ,
504
504
] ,
505
505
targets: [
506
506
TargetDescription ( name: " extlib " , dependencies: [ ] ) ,
@@ -622,7 +622,7 @@ final class BuildPlanTests: XCTestCase {
622
622
url: " /ExtPkg " ,
623
623
packageKind: . remote,
624
624
products: [
625
- ProductDescription ( name: " ExtPkg " , targets: [ " ExtLib " ] ) ,
625
+ ProductDescription ( name: " ExtPkg " , type : . library ( . automatic ) , targets: [ " ExtLib " ] ) ,
626
626
] ,
627
627
targets: [
628
628
TargetDescription ( name: " ExtLib " , dependencies: [ ] ) ,
@@ -870,7 +870,7 @@ final class BuildPlanTests: XCTestCase {
870
870
url: " /Dep " ,
871
871
packageKind: . local,
872
872
products: [
873
- ProductDescription ( name: " Dep " , targets: [ " Dep " ] ) ,
873
+ ProductDescription ( name: " Dep " , type : . library ( . automatic ) , targets: [ " Dep " ] ) ,
874
874
] ,
875
875
targets: [
876
876
TargetDescription ( name: " Dep " , dependencies: [ " CDep " ] ) ,
@@ -1798,7 +1798,7 @@ final class BuildPlanTests: XCTestCase {
1798
1798
v: . v5,
1799
1799
packageKind: . local,
1800
1800
products: [
1801
- ProductDescription ( name: " BLibrary " , targets: [ " BTarget " ] ) ,
1801
+ ProductDescription ( name: " BLibrary " , type : . library ( . automatic ) , targets: [ " BTarget " ] ) ,
1802
1802
] ,
1803
1803
targets: [
1804
1804
TargetDescription ( name: " BTarget " , dependencies: [ ] ) ,
@@ -1862,7 +1862,7 @@ final class BuildPlanTests: XCTestCase {
1862
1862
v: . v5,
1863
1863
packageKind: . local,
1864
1864
products: [
1865
- ProductDescription ( name: " BLibrary " , targets: [ " BTarget " ] ) ,
1865
+ ProductDescription ( name: " BLibrary " , type : . library ( . automatic ) , targets: [ " BTarget " ] ) ,
1866
1866
] ,
1867
1867
targets: [
1868
1868
TargetDescription ( name: " BTarget " , dependencies: [ ] ) ,
@@ -1953,7 +1953,7 @@ final class BuildPlanTests: XCTestCase {
1953
1953
v: . v5,
1954
1954
packageKind: . local,
1955
1955
products: [
1956
- ProductDescription ( name: " Dep " , targets: [ " t1 " , " t2 " ] ) ,
1956
+ ProductDescription ( name: " Dep " , type : . library ( . automatic ) , targets: [ " t1 " , " t2 " ] ) ,
1957
1957
] ,
1958
1958
targets: [
1959
1959
TargetDescription (
@@ -2073,7 +2073,7 @@ final class BuildPlanTests: XCTestCase {
2073
2073
url: " /PkgA " ,
2074
2074
packageKind: . local,
2075
2075
products: [
2076
- ProductDescription ( name: " swiftlib " , targets: [ " swiftlib " ] ) ,
2076
+ ProductDescription ( name: " swiftlib " , type : . library ( . automatic ) , targets: [ " swiftlib " ] ) ,
2077
2077
ProductDescription ( name: " exe " , type: . executable, targets: [ " exe " ] )
2078
2078
] ,
2079
2079
targets: [
@@ -2192,7 +2192,7 @@ final class BuildPlanTests: XCTestCase {
2192
2192
url: " /PkgB " ,
2193
2193
packageKind: . local,
2194
2194
products: [
2195
- ProductDescription ( name: " Foo " , targets: [ " Foo " ] ) ,
2195
+ ProductDescription ( name: " Foo " , type : . library ( . automatic ) , targets: [ " Foo " ] ) ,
2196
2196
] ,
2197
2197
targets: [
2198
2198
TargetDescription ( name: " Foo " , dependencies: [ ] ) ,
0 commit comments