Enable a MacOS target.

This commit is contained in:
Jeremy Rand 2021-09-15 22:36:32 -04:00
parent e7445c21d3
commit 81385a4b8e
5 changed files with 30 additions and 2 deletions

View File

@ -44,6 +44,7 @@
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
9D0DC15826F2E47A007EB92D /* ListenerApp.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = ListenerApp.entitlements; sourceTree = "<group>"; };
9D5155EF26A1EF7B0075EBC7 /* ListenerApp.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = ListenerApp.app; sourceTree = BUILT_PRODUCTS_DIR; };
9D5155F226A1EF7B0075EBC7 /* ListenerAppApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ListenerAppApp.swift; sourceTree = "<group>"; };
9D5155F426A1EF7B0075EBC7 /* ContentView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentView.swift; sourceTree = "<group>"; };
@ -124,6 +125,7 @@
9D5155F126A1EF7B0075EBC7 /* ListenerApp */ = {
isa = PBXGroup;
children = (
9D0DC15826F2E47A007EB92D /* ListenerApp.entitlements */,
9D5155F226A1EF7B0075EBC7 /* ListenerAppApp.swift */,
9D5155F426A1EF7B0075EBC7 /* ContentView.swift */,
9D51566326A36F530075EBC7 /* BinUtils */,
@ -514,6 +516,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_ENTITLEMENTS = ListenerApp/ListenerApp.entitlements;
CODE_SIGN_STYLE = Automatic;
DEVELOPMENT_ASSET_PATHS = "\"ListenerApp/Preview Content\"";
DEVELOPMENT_TEAM = VD9FGCW36C;
@ -526,6 +529,7 @@
);
PRODUCT_BUNDLE_IDENTIFIER = com.halcyontouch.ListenerApp;
PRODUCT_NAME = "$(TARGET_NAME)";
SUPPORTS_MACCATALYST = YES;
SWIFT_OBJC_BRIDGING_HEADER = "ListenerApp/SwiftSocket/ListenerApp-Bridging-Header.h";
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_VERSION = 5.0;
@ -539,6 +543,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_ENTITLEMENTS = ListenerApp/ListenerApp.entitlements;
CODE_SIGN_STYLE = Automatic;
DEVELOPMENT_ASSET_PATHS = "\"ListenerApp/Preview Content\"";
DEVELOPMENT_TEAM = VD9FGCW36C;
@ -551,6 +556,7 @@
);
PRODUCT_BUNDLE_IDENTIFIER = com.halcyontouch.ListenerApp;
PRODUCT_NAME = "$(TARGET_NAME)";
SUPPORTS_MACCATALYST = YES;
SWIFT_OBJC_BRIDGING_HEADER = "ListenerApp/SwiftSocket/ListenerApp-Bridging-Header.h";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";

View File

@ -2,6 +2,6 @@
<Workspace
version = "1.0">
<FileRef
location = "self:">
location = "self:/Users/jrand/Coding/AppleCoding/Apple2GS/ListenerApp/ListenerApp.xcodeproj">
</FileRef>
</Workspace>

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Bucket
uuid = "481B7600-F5A8-42EF-957A-5B2AF0C03501"
type = "1"
version = "2.0">
</Bucket>

View File

@ -4,6 +4,8 @@
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleDisplayName</key>
<string>ListenerGS</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
@ -17,7 +19,9 @@
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleVersion</key>
<string>95</string>
<string>97</string>
<key>LSApplicationCategoryType</key>
<string>public.app-category.utilities</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSMicrophoneUsageDescription</key>

View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>com.apple.security.app-sandbox</key>
<true/>
<key>com.apple.security.device.audio-input</key>
<true/>
<key>com.apple.security.network.client</key>
<true/>
</dict>
</plist>