File tree Expand file tree Collapse file tree 3 files changed +3
-6
lines changed Expand file tree Collapse file tree 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)
5353 find_package (ArgumentParser CONFIG REQUIRED)
5454 find_package (SwiftCrypto CONFIG REQUIRED)
5555 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)
5857endif ()
5958
6059find_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 {
359359 . package ( url: " https://github.com/apple/swift-argument-parser.git " , . upToNextMinor( from: " 0.4.3 " ) ) ,
360360 . package ( url: " https://github.com/apple/swift-driver.git " , . branch( relatedDependenciesBranch) ) ,
361361 . 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 " ) ) ,
363363 ]
364364} else {
365365 package . dependencies += [
Original file line number Diff line number Diff line change @@ -604,9 +604,7 @@ def build_swiftpm_with_cmake(args):
604604 "-DArgumentParser_DIR=" + os .path .join (args .swift_argument_parser_build_dir , "cmake/modules" ),
605605 "-DSwiftDriver_DIR=" + os .path .join (args .swift_driver_build_dir , "cmake/modules" ),
606606 "-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" ),
610608 ]
611609
612610 if platform .system () == 'Darwin' :
You can’t perform that action at this time.
0 commit comments