Skip to content

Commit 31fa6fc

Browse files
committed
Enable maccatalyst
1 parent 116ba74 commit 31fa6fc

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

src/darwin/CHIPTool/CHIPTool.xcodeproj/project.pbxproj

+4
Original file line numberDiff line numberDiff line change
@@ -579,6 +579,7 @@
579579
PRODUCT_NAME = "$(TARGET_NAME)";
580580
PROVISIONING_PROFILE_SPECIFIER = "";
581581
SDKROOT = iphoneos;
582+
SUPPORTS_MACCATALYST = YES;
582583
TARGETED_DEVICE_FAMILY = "1,2";
583584
};
584585
name = Debug;
@@ -602,6 +603,7 @@
602603
PRODUCT_NAME = "$(TARGET_NAME)";
603604
PROVISIONING_PROFILE_SPECIFIER = "";
604605
SDKROOT = iphoneos;
606+
SUPPORTS_MACCATALYST = YES;
605607
TARGETED_DEVICE_FAMILY = "1,2";
606608
};
607609
name = Release;
@@ -611,6 +613,7 @@
611613
buildSettings = {
612614
BUNDLE_LOADER = "$(TEST_HOST)";
613615
CODE_SIGN_STYLE = Automatic;
616+
DEVELOPMENT_TEAM = "";
614617
INFOPLIST_FILE = CHIPToolTests/Info.plist;
615618
IPHONEOS_DEPLOYMENT_TARGET = 13.4;
616619
LD_RUNPATH_SEARCH_PATHS = (
@@ -630,6 +633,7 @@
630633
buildSettings = {
631634
BUNDLE_LOADER = "$(TEST_HOST)";
632635
CODE_SIGN_STYLE = Automatic;
636+
DEVELOPMENT_TEAM = "";
633637
INFOPLIST_FILE = CHIPToolTests/Info.plist;
634638
IPHONEOS_DEPLOYMENT_TARGET = 13.4;
635639
LD_RUNPATH_SEARCH_PATHS = (
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
33
<plist version="1.0">
4-
<dict/>
4+
<dict>
5+
<key>com.apple.security.app-sandbox</key>
6+
<true/>
7+
<key>com.apple.security.device.bluetooth</key>
8+
<true/>
9+
<key>com.apple.security.device.camera</key>
10+
<true/>
11+
<key>com.apple.security.network.client</key>
12+
<true/>
13+
<key>com.apple.security.network.server</key>
14+
<true/>
15+
<key>keychain-access-groups</key>
16+
<array>
17+
<string>$(AppIdentifierPrefix)com.matter.CHIPTool</string>
18+
</array>
19+
</dict>
520
</plist>

0 commit comments

Comments
 (0)