Skip to content

Commit

Permalink
Modified arguments passed to xcodebuild when building iOS apps. (#2102)
Browse files Browse the repository at this point in the history
  • Loading branch information
freakboy3742 authored Jan 6, 2025
1 parent c83c495 commit 2eb991b
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 8 deletions.
1 change: 1 addition & 0 deletions changes/2102.bugfix.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
The arguments passed to xcodebuild when compiling an iOS app have been modified to avoid a warning about an ignored argument.
2 changes: 0 additions & 2 deletions src/briefcase/platforms/iOS/xcode.py
Original file line number Diff line number Diff line change
Expand Up @@ -404,8 +404,6 @@ def build_app(self, app: AppConfig, test_mode: bool = False, **kwargs):
"build",
"-project",
self.project_path(app),
"-destination",
'platform="iOS Simulator"',
"-configuration",
"Debug",
"-arch",
Expand Down
6 changes: 0 additions & 6 deletions tests/platforms/iOS/xcode/test_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,6 @@ def test_build_app(build_command, first_app_generated, tool_debug_mode, tmp_path
/ "ios"
/ "xcode"
/ "First App.xcodeproj",
"-destination",
'platform="iOS Simulator"',
"-configuration",
"Debug",
"-arch",
Expand Down Expand Up @@ -87,8 +85,6 @@ def test_build_app_test_mode(build_command, first_app_generated, tmp_path):
/ "ios"
/ "xcode"
/ "First App.xcodeproj",
"-destination",
'platform="iOS Simulator"',
"-configuration",
"Debug",
"-arch",
Expand Down Expand Up @@ -133,8 +129,6 @@ def test_build_app_failed(build_command, first_app_generated, tmp_path):
/ "ios"
/ "xcode"
/ "First App.xcodeproj",
"-destination",
'platform="iOS Simulator"',
"-configuration",
"Debug",
"-arch",
Expand Down

0 comments on commit 2eb991b

Please sign in to comment.