Skip to content

Commit

Permalink
chore: add config file
Browse files Browse the repository at this point in the history
  • Loading branch information
castdrian committed Feb 24, 2024
1 parent b581f6c commit 42e0083
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 4 deletions.
14 changes: 10 additions & 4 deletions showdown.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
3A2DD5FE2B8922FA00EC365F /* ContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3A2DD5FD2B8922FA00EC365F /* ContentView.swift */; };
3A2DD6002B8922FB00EC365F /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 3A2DD5FF2B8922FB00EC365F /* Assets.xcassets */; };
3A2DD6032B8922FB00EC365F /* Preview Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 3A2DD6022B8922FB00EC365F /* Preview Assets.xcassets */; };
3A2DD6142B89F47600EC365F /* Config.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 3A2DD6132B89F47600EC365F /* Config.xcconfig */; };
/* End PBXBuildFile section */

/* Begin PBXFileReference section */
Expand All @@ -19,6 +20,7 @@
3A2DD5FD2B8922FA00EC365F /* ContentView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentView.swift; sourceTree = "<group>"; };
3A2DD5FF2B8922FB00EC365F /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
3A2DD6022B8922FB00EC365F /* Preview Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = "Preview Assets.xcassets"; sourceTree = "<group>"; };
3A2DD6132B89F47600EC365F /* Config.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Config.xcconfig; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
Expand Down Expand Up @@ -55,6 +57,7 @@
3A2DD5FD2B8922FA00EC365F /* ContentView.swift */,
3A2DD5FF2B8922FB00EC365F /* Assets.xcassets */,
3A2DD6012B8922FB00EC365F /* Preview Content */,
3A2DD6132B89F47600EC365F /* Config.xcconfig */,
);
path = showdown;
sourceTree = "<group>";
Expand Down Expand Up @@ -126,6 +129,7 @@
buildActionMask = 2147483647;
files = (
3A2DD6032B8922FB00EC365F /* Preview Assets.xcassets in Resources */,
3A2DD6142B89F47600EC365F /* Config.xcconfig in Resources */,
3A2DD6002B8922FB00EC365F /* Assets.xcassets in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
Expand Down Expand Up @@ -266,11 +270,12 @@
};
3A2DD6072B8922FB00EC365F /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 3A2DD6132B89F47600EC365F /* Config.xcconfig */;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1;
CURRENT_PROJECT_VERSION = "$(BUILD_NUMBER)";
DEVELOPMENT_ASSET_PATHS = "\"showdown/Preview Content\"";
DEVELOPMENT_TEAM = L988J7YMK5;
ENABLE_PREVIEWS = YES;
Expand All @@ -285,7 +290,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.0;
MARKETING_VERSION = "$(VERSION)";
PRODUCT_BUNDLE_IDENTIFIER = com.castdrian.showdown;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_EMIT_LOC_STRINGS = YES;
Expand All @@ -296,11 +301,12 @@
};
3A2DD6082B8922FB00EC365F /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 3A2DD6132B89F47600EC365F /* Config.xcconfig */;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1;
CURRENT_PROJECT_VERSION = "$(BUILD_NUMBER)";
DEVELOPMENT_ASSET_PATHS = "\"showdown/Preview Content\"";
DEVELOPMENT_TEAM = L988J7YMK5;
ENABLE_PREVIEWS = YES;
Expand All @@ -315,7 +321,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.0;
MARKETING_VERSION = "$(VERSION)";
PRODUCT_BUNDLE_IDENTIFIER = com.castdrian.showdown;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_EMIT_LOC_STRINGS = YES;
Expand Down
9 changes: 9 additions & 0 deletions showdown/Config.xcconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
//
// Config.xcconfig
// showdown
//
// Created by Adrian Castro on 24.02.24.
//

BUILD_NUMBER = 1
VERSION = 0.1.0

0 comments on commit 42e0083

Please sign in to comment.