Skip to content

Commit

Permalink
Fixed Makefile, bumped version to 0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
sveinbjornt committed Mar 25, 2023
1 parent 3ab3938 commit 914d8a1
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
XCODE_PROJ := "hear.xcodeproj"
PROGRAM_NAME := "hear"
BUILD_DIR := "products"
VERSION := "0.2"
VERSION := "0.3"

all: clean build_unsigned

Expand All @@ -19,6 +19,7 @@ build_unsigned:
CONFIGURATION_BUILD_DIR="$(BUILD_DIR)" \
CODE_SIGN_IDENTITY="" \
CODE_SIGNING_REQUIRED=NO \
CODE_SIGNING_ALLOWED=NO \
build

build_signed:
Expand All @@ -28,6 +29,8 @@ build_signed:
-target "$(PROGRAM_NAME)" \
-configuration "Release" \
CONFIGURATION_BUILD_DIR="$(BUILD_DIR)" \
CODE_SIGNING_REQUIRED=YES \
CODE_SIGNING_ALLOWED=YES \
build

archive:
Expand Down
6 changes: 4 additions & 2 deletions hear.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -289,11 +289,12 @@
CODE_SIGN_STYLE = Automatic;
CREATE_INFOPLIST_SECTION_IN_BINARY = YES;
DEAD_CODE_STRIPPING = YES;
DEPLOYMENT_POSTPROCESSING = YES;
DEVELOPMENT_TEAM = 5WX26Y89JP;
ENABLE_HARDENED_RUNTIME = YES;
INFOPLIST_FILE = Info.plist;
MACOSX_DEPLOYMENT_TARGET = 10.15;
MARKETING_VERSION = 0.2;
MARKETING_VERSION = 0.3;
PRODUCT_BUNDLE_IDENTIFIER = org.sveinbjorn.hear;
PRODUCT_NAME = "$(TARGET_NAME)";
};
Expand All @@ -307,11 +308,12 @@
CODE_SIGN_STYLE = Automatic;
CREATE_INFOPLIST_SECTION_IN_BINARY = YES;
DEAD_CODE_STRIPPING = YES;
DEPLOYMENT_POSTPROCESSING = YES;
DEVELOPMENT_TEAM = 5WX26Y89JP;
ENABLE_HARDENED_RUNTIME = YES;
INFOPLIST_FILE = Info.plist;
MACOSX_DEPLOYMENT_TARGET = 10.15;
MARKETING_VERSION = 0.2;
MARKETING_VERSION = 0.3;
PRODUCT_BUNDLE_IDENTIFIER = org.sveinbjorn.hear;
PRODUCT_NAME = "$(TARGET_NAME)";
STRIPFLAGS = "-x";
Expand Down
2 changes: 1 addition & 1 deletion src/Common.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
#import <Foundation/Foundation.h>

#define PROGRAM_NAME @"hear"
#define PROGRAM_VERSION @"0.2"
#define PROGRAM_VERSION @"0.3"
#define PROGRAM_AUTHOR @"Sveinbjorn Thordarson"

#define DEFAULT_LOCALE @"en-US"
Expand Down

0 comments on commit 914d8a1

Please sign in to comment.