Skip to content

Commit

Permalink
Rename rust_xcframework to RustXcframework (#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
simlay committed Apr 21, 2022
1 parent 6b3cb07 commit 03de7ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/swift-bridge-build/src/package.rs
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ fn gen_xcframework(output_dir: &Path, config: &CreatePackageConfig) {
}

// build xcframework
let xcframework_dir = output_dir.join("rust_framework.xcframework");
let xcframework_dir = output_dir.join("RustXcframework.xcframework");
if xcframework_dir.exists() {
fs::remove_dir_all(&xcframework_dir).expect("Couldn't delete previous xcframework file");
}
Expand Down Expand Up @@ -324,7 +324,7 @@ let package = Package(
targets: [
.binaryTarget(
name: "RustXcframework",
path: "rust_framework.xcframework"
path: "RustXcframework.xcframework"
),
.target(
name: "{package_name}",
Expand Down

0 comments on commit 03de7ea

Please sign in to comment.