Skip to content

Commit

Permalink
Mac Catalyst example
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonacox committed Jul 19, 2023
1 parent 05dbad8 commit c083f86
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 6 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,13 @@ name: build

# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request
# Triggers the workflow on push or pull request except for documentation changes
push:
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'

# Allow from the Actions tab
workflow_dispatch:
Expand Down
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{
"git.ignoreLimitWarning": true
"git.ignoreLimitWarning": true,
"cmake.configureOnOpen": false
}
12 changes: 10 additions & 2 deletions example/iOS Test App/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,14 @@ Build the libraries with Mac Catalyst support:

Load and build the project using Xcode. Example lib binaries (xcframework)and header files are included but will be replaced when you run the build script.

## Screenshot
## Screenshots

![iOS Test App](screenshot.png)
iOS Test Build

<img width="400" alt="image" src="https://github.com/jasonacox/Build-OpenSSL-cURL/assets/836718/6de13ab3-b7fe-4017-bf6d-9cbde131c098">
<img width="400" alt="image" src="https://github.com/jasonacox/Build-OpenSSL-cURL/assets/836718/66806f0c-0915-4742-b71c-b683300082ae">

Mac Catalyst Build

<img width="400" alt="image" src="https://github.com/jasonacox/Build-OpenSSL-cURL/assets/836718/c5ee7356-ea03-4091-a362-c79b123829fd">
<img width="400" alt="image" src="https://github.com/jasonacox/Build-OpenSSL-cURL/assets/836718/0369f35c-7c80-4cbe-92fb-c6008b115fa9">
4 changes: 2 additions & 2 deletions example/iOS Test App/iOS Test App.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@
MARKETING_VERSION = 1.1;
PRODUCT_BUNDLE_IDENTIFIER = "com.jasonacox.iOS-Test-App";
PRODUCT_NAME = "$(TARGET_NAME)";
SUPPORTS_MACCATALYST = NO;
SUPPORTS_MACCATALYST = YES;
TARGETED_DEVICE_FAMILY = "1,2";
USE_HEADERMAP = YES;
};
Expand Down Expand Up @@ -379,7 +379,7 @@
MARKETING_VERSION = 1.1;
PRODUCT_BUNDLE_IDENTIFIER = "com.jasonacox.iOS-Test-App";
PRODUCT_NAME = "$(TARGET_NAME)";
SUPPORTS_MACCATALYST = NO;
SUPPORTS_MACCATALYST = YES;
TARGETED_DEVICE_FAMILY = "1,2";
USE_HEADERMAP = YES;
};
Expand Down

0 comments on commit c083f86

Please sign in to comment.