Skip to content
This repository has been archived by the owner on Apr 5, 2022. It is now read-only.

Commit

Permalink
Fixed build
Browse files Browse the repository at this point in the history
  • Loading branch information
Pavo-IM committed Oct 12, 2020
1 parent 872c3eb commit 9a63a15
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
14 changes: 8 additions & 6 deletions OCBuilder.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -338,12 +338,13 @@
buildSettings = {
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_ENTITLEMENTS = OCBuilder/OCBuilder.entitlements;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 1;
DEVELOPMENT_TEAM = 2AMVHQ46X7;
ENABLE_HARDENED_RUNTIME = YES;
DEVELOPMENT_TEAM = 5DG8PLV54H;
ENABLE_HARDENED_RUNTIME = NO;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)",
Expand All @@ -356,7 +357,7 @@
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.11;
MARKETING_VERSION = 7.5.5;
MARKETING_VERSION = 7.5.6;
PRODUCT_BUNDLE_IDENTIFIER = OCBuilder.OCBuilder;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand All @@ -369,12 +370,13 @@
buildSettings = {
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_ENTITLEMENTS = OCBuilder/OCBuilder.entitlements;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 1;
DEVELOPMENT_TEAM = 2AMVHQ46X7;
ENABLE_HARDENED_RUNTIME = YES;
DEVELOPMENT_TEAM = 5DG8PLV54H;
ENABLE_HARDENED_RUNTIME = NO;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)",
Expand All @@ -387,7 +389,7 @@
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.11;
MARKETING_VERSION = 7.5.5;
MARKETING_VERSION = 7.5.6;
PRODUCT_BUNDLE_IDENTIFIER = OCBuilder.OCBuilder;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down
Binary file not shown.
5 changes: 3 additions & 2 deletions OCBuilder/TaskViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ class TaskViewController: NSViewController {
} else {
runReleaseWithoutKextScript(arguments)
}
if versionList.titleOfSelectedItem == "Debug IA32" { runDebugWithoutKextScriptIA32(arguments)
if versionList.titleOfSelectedItem == "Debug IA32" {
runDebugWithoutKextScriptIA32(arguments)
}
if versionList.titleOfSelectedItem == "Release IA32" {
runReleaseWithoutKextScriptIA32(arguments)
Expand All @@ -74,7 +75,7 @@ class TaskViewController: NSViewController {
}
}

@IBAction func stopTask(_ sender: Any) {
@IBAction func stopTask(_ sender: NSButton) {
stopButton.isEnabled = false
progressBar.isHidden = true
if isRunning {
Expand Down

0 comments on commit 9a63a15

Please sign in to comment.