Skip to content

Commit

Permalink
Merge pull request #37 from boscojwho/bosco/xcconfig
Browse files Browse the repository at this point in the history
+ Add .xcconfig files for debug/release.
  • Loading branch information
boscojwho authored Nov 30, 2023
2 parents 70eaa60 + eabe05c commit 18e3532
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
2 changes: 2 additions & 0 deletions Chinotto-release.xcconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
DEVELOPMENT_TEAM = 4G96725NK5
BUNDLE_ID_PREFIX = com.bosco.ho
4 changes: 4 additions & 0 deletions Chinotto.xcconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
// Replace placeholder values with your own.
// [2023.11] How to find your development team id: https://developer.apple.com/help/account/manage-your-team/locate-your-team-id/
DEVELOPMENT_TEAM = abcde12345
BUNDLE_ID_PREFIX = com.example
12 changes: 10 additions & 2 deletions Chinotto.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,8 @@
E47519282B03AB1800C360DD /* _CoreSimulatorUserView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = _CoreSimulatorUserView.swift; sourceTree = "<group>"; };
E4934CDD2B0D9BE000B4A527 /* AppPreferencesView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppPreferencesView.swift; sourceTree = "<group>"; };
E4934CDF2B0D9BEE00B4A527 /* GeneralPreferencesView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GeneralPreferencesView.swift; sourceTree = "<group>"; };
E49397852B194E29001204B6 /* Chinotto.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Chinotto.xcconfig; sourceTree = "<group>"; };
E49397862B194ED5001204B6 /* Chinotto-release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Chinotto-release.xcconfig"; sourceTree = "<group>"; };
E49C418D2B0C54D5001100EC /* FileSystemUI */ = {isa = PBXFileReference; lastKnownFileType = wrapper; name = FileSystemUI; path = Packages/FileSystemUI; sourceTree = "<group>"; };
E49C41902B0C55CB001100EC /* FileSystem */ = {isa = PBXFileReference; lastKnownFileType = wrapper; name = FileSystem; path = Packages/FileSystem; sourceTree = "<group>"; };
E4A30A852B00D24700BE5444 /* Chinotto.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Chinotto.app; sourceTree = BUILT_PRODUCTS_DIR; };
Expand Down Expand Up @@ -172,6 +174,8 @@
E4A30A7C2B00D24700BE5444 = {
isa = PBXGroup;
children = (
E49397852B194E29001204B6 /* Chinotto.xcconfig */,
E49397862B194ED5001204B6 /* Chinotto-release.xcconfig */,
E49C41902B0C55CB001100EC /* FileSystem */,
E49C418D2B0C54D5001100EC /* FileSystemUI */,
E4F8ECD12B0851CD0075AB04 /* DestructiveActions */,
Expand Down Expand Up @@ -474,6 +478,7 @@
/* Begin XCBuildConfiguration section */
E4A30AAA2B00D24800BE5444 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = E49397852B194E29001204B6 /* Chinotto.xcconfig */;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
Expand Down Expand Up @@ -537,6 +542,7 @@
};
E4A30AAB2B00D24800BE5444 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = E49397862B194ED5001204B6 /* Chinotto-release.xcconfig */;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
Expand Down Expand Up @@ -596,6 +602,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
CODE_SIGN_ENTITLEMENTS = Chinotto/Chinotto.entitlements;
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 1;
Expand All @@ -611,7 +618,7 @@
);
MACOSX_DEPLOYMENT_TARGET = 14.0;
MARKETING_VERSION = 1.0;
PRODUCT_BUNDLE_IDENTIFIER = boscoho.Chinotto;
PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_ID_PREFIX).Chinotto";
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_EMIT_LOC_STRINGS = YES;
SWIFT_VERSION = 5.0;
Expand All @@ -624,6 +631,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
CODE_SIGN_ENTITLEMENTS = Chinotto/Chinotto.entitlements;
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 1;
Expand All @@ -639,7 +647,7 @@
);
MACOSX_DEPLOYMENT_TARGET = 14.0;
MARKETING_VERSION = 1.0;
PRODUCT_BUNDLE_IDENTIFIER = boscoho.Chinotto;
PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_ID_PREFIX).Chinotto";
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_EMIT_LOC_STRINGS = YES;
SWIFT_VERSION = 5.0;
Expand Down

0 comments on commit 18e3532

Please sign in to comment.