Skip to content

Commit c083f86

Browse files
committed
Mac Catalyst example
1 parent 05dbad8 commit c083f86

File tree

4 files changed

+19
-6
lines changed

4 files changed

+19
-6
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,13 @@ name: build
44

55
# Controls when the workflow will run
66
on:
7-
# Triggers the workflow on push or pull request
7+
# Triggers the workflow on push or pull request except for documentation changes
88
push:
9+
paths-ignore:
10+
- '**.md'
911
pull_request:
12+
paths-ignore:
13+
- '**.md'
1014

1115
# Allow from the Actions tab
1216
workflow_dispatch:

.vscode/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
{
2-
"git.ignoreLimitWarning": true
2+
"git.ignoreLimitWarning": true,
3+
"cmake.configureOnOpen": false
34
}

example/iOS Test App/README.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,14 @@ Build the libraries with Mac Catalyst support:
1313

1414
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.
1515

16-
## Screenshot
16+
## Screenshots
1717

18-
![iOS Test App](screenshot.png)
18+
iOS Test Build
19+
20+
<img width="400" alt="image" src="https://github.com/jasonacox/Build-OpenSSL-cURL/assets/836718/6de13ab3-b7fe-4017-bf6d-9cbde131c098">
21+
<img width="400" alt="image" src="https://github.com/jasonacox/Build-OpenSSL-cURL/assets/836718/66806f0c-0915-4742-b71c-b683300082ae">
22+
23+
Mac Catalyst Build
24+
25+
<img width="400" alt="image" src="https://github.com/jasonacox/Build-OpenSSL-cURL/assets/836718/c5ee7356-ea03-4091-a362-c79b123829fd">
26+
<img width="400" alt="image" src="https://github.com/jasonacox/Build-OpenSSL-cURL/assets/836718/0369f35c-7c80-4cbe-92fb-c6008b115fa9">

example/iOS Test App/iOS Test App.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@
349349
MARKETING_VERSION = 1.1;
350350
PRODUCT_BUNDLE_IDENTIFIER = "com.jasonacox.iOS-Test-App";
351351
PRODUCT_NAME = "$(TARGET_NAME)";
352-
SUPPORTS_MACCATALYST = NO;
352+
SUPPORTS_MACCATALYST = YES;
353353
TARGETED_DEVICE_FAMILY = "1,2";
354354
USE_HEADERMAP = YES;
355355
};
@@ -379,7 +379,7 @@
379379
MARKETING_VERSION = 1.1;
380380
PRODUCT_BUNDLE_IDENTIFIER = "com.jasonacox.iOS-Test-App";
381381
PRODUCT_NAME = "$(TARGET_NAME)";
382-
SUPPORTS_MACCATALYST = NO;
382+
SUPPORTS_MACCATALYST = YES;
383383
TARGETED_DEVICE_FAMILY = "1,2";
384384
USE_HEADERMAP = YES;
385385
};

0 commit comments

Comments
 (0)