File tree 3 files changed +3
-6
lines changed
3 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -53,8 +53,7 @@ if(FIND_PM_DEPS)
53
53
find_package (ArgumentParser CONFIG REQUIRED)
54
54
find_package (SwiftCrypto CONFIG REQUIRED)
55
55
find_package (SwiftDriver CONFIG REQUIRED)
56
- # FIXME: need to change in SwiftCollections (swift-collections -> SwiftCollections)
57
- find_package (swift-collections CONFIG REQUIRED)
56
+ find_package (SwiftCollections CONFIG REQUIRED)
58
57
endif ()
59
58
60
59
find_package (dispatch QUIET )
Original file line number Diff line number Diff line change @@ -359,7 +359,7 @@ if ProcessInfo.processInfo.environment["SWIFTCI_USE_LOCAL_DEPS"] == nil {
359
359
. package ( url: " https://github.com/apple/swift-argument-parser.git " , . upToNextMinor( from: " 0.4.3 " ) ) ,
360
360
. package ( url: " https://github.com/apple/swift-driver.git " , . branch( relatedDependenciesBranch) ) ,
361
361
. package ( url: " https://github.com/apple/swift-crypto.git " , . upToNextMinor( from: " 1.1.4 " ) ) ,
362
- . package ( url: " https://github.com/apple/swift-collections.git " , . upToNextMinor( from: " 0.0.3 " ) ) ,
362
+ . package ( url: " https://github.com/apple/swift-collections.git " , . upToNextMinor( from: " 0.0.4 " ) ) ,
363
363
]
364
364
} else {
365
365
package . dependencies += [
Original file line number Diff line number Diff line change @@ -604,9 +604,7 @@ def build_swiftpm_with_cmake(args):
604
604
"-DArgumentParser_DIR=" + os .path .join (args .swift_argument_parser_build_dir , "cmake/modules" ),
605
605
"-DSwiftDriver_DIR=" + os .path .join (args .swift_driver_build_dir , "cmake/modules" ),
606
606
"-DSwiftCrypto_DIR=" + os .path .join (args .swift_crypto_build_dir , "cmake/modules" ),
607
- # FIXME: need to change in SwiftCollections (swift-collections -> SwiftCollections)
608
- #"-DSwiftCollections_DIR=" + os.path.join(args.swift_collections_build_dir, "cmake/modules"),
609
- "-Dswift-collections_DIR=" + os .path .join (args .swift_collections_build_dir ),
607
+ "-DSwiftCollections_DIR=" + os .path .join (args .swift_collections_build_dir , "cmake/modules" ),
610
608
]
611
609
612
610
if platform .system () == 'Darwin' :
You can’t perform that action at this time.
0 commit comments