-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace SwiftPM with Swift Argument Parser (#245)
The CLI currently uses the old SwiftPM utils to parse command line arguments, which is no longer source-compatible with the Xcode 13 toolchain / Swift 5.5. Migrating to Swift Argument Parser has been on our backlog for a while and it makes sense to switch now. In addition to offering a more future-proof solution, Swift Argument Parser has a robust feature set that enables us to implement more expressive CLI options.
- Loading branch information
1 parent
6a682af
commit c1f61ce
Showing
87 changed files
with
2,822 additions
and
2,079 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
INFOPLIST_FILE = $(SRCROOT)/Sources/MockingbirdCli/Info.plist | ||
FRAMEWORK_SEARCH_PATHS = $(PLATFORM_DIR)/Developer/Library/Frameworks | ||
MACOSX_DEPLOYMENT_TARGET = 10.14 | ||
MACOSX_DEPLOYMENT_TARGET = 10.15 | ||
SUPPORTED_PLATFORMS = macosx |
Oops, something went wrong.