Skip to content

Commit

Permalink
Enable hardened runtime
Browse files Browse the repository at this point in the history
  • Loading branch information
PierreBerger committed Aug 18, 2021
1 parent e8a09d3 commit 4ce05a7
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 5 deletions.
18 changes: 14 additions & 4 deletions LivecamWallpaper.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@
/* End PBXCopyFilesBuildPhase section */

/* Begin PBXFileReference section */
8F2C968C26CD2AF600855B12 /* LivecamWallpaperUpdaterService.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = LivecamWallpaperUpdaterService.entitlements; sourceTree = "<group>"; };
8F39DDAB2628EE2B00F0C010 /* SkapingController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SkapingController.swift; sourceTree = "<group>"; };
8F39DDB82628F90100F0C010 /* Utilities.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Utilities.swift; sourceTree = "<group>"; };
8F5390B2263F47CB00EA6B2E /* updater.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = updater.swift; sourceTree = "<group>"; };
Expand Down Expand Up @@ -139,6 +140,7 @@
8F70245E26CA7AD100B63440 /* LivecamWallpaperUpdaterService */ = {
isa = PBXGroup;
children = (
8F2C968C26CD2AF600855B12 /* LivecamWallpaperUpdaterService.entitlements */,
8F70245126CA768F00B63440 /* main.swift */,
8F70245326CA76BA00B63440 /* LivecamWallpaperUpdaterService.swift */,
8F70245526CA76D800B63440 /* LivecamWallpaperUpdaterServiceDelegate.swift */,
Expand Down Expand Up @@ -392,10 +394,12 @@
8F70246B26CA7AD100B63440 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_ENTITLEMENTS = LivecamWallpaperUpdaterService/LivecamWallpaperUpdaterService.entitlements;
CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
DEVELOPMENT_TEAM = "";
ENABLE_HARDENED_RUNTIME = YES;
INFOPLIST_FILE = LivecamWallpaperUpdaterService/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "@loader_path/../../../../Frameworks";
MACOSX_DEPLOYMENT_TARGET = 10.15;
Expand All @@ -411,10 +415,12 @@
8F70246C26CA7AD100B63440 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_ENTITLEMENTS = LivecamWallpaperUpdaterService/LivecamWallpaperUpdaterService.entitlements;
CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
DEVELOPMENT_TEAM = "";
ENABLE_HARDENED_RUNTIME = YES;
INFOPLIST_FILE = LivecamWallpaperUpdaterService/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "@loader_path/../../../../Frameworks";
MACOSX_DEPLOYMENT_TARGET = 10.15;
Expand Down Expand Up @@ -550,18 +556,20 @@
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
CODE_SIGN_ENTITLEMENTS = LivecamWallpaper/LivecamWallpaper.entitlements;
CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Manual;
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 2;
DEVELOPMENT_ASSET_PATHS = "\"LivecamWallpaper/Preview Content\"";
DEVELOPMENT_TEAM = "";
ENABLE_HARDENED_RUNTIME = YES;
ENABLE_PREVIEWS = YES;
INFOPLIST_FILE = LivecamWallpaper/Info.plist;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.15;
MARKETING_VERSION = 0.1.0;
MARKETING_VERSION = 0.1.1;
PRODUCT_BUNDLE_IDENTIFIER = fr.pierreberger.LivecamWallpaper;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand All @@ -578,18 +586,20 @@
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
CODE_SIGN_ENTITLEMENTS = LivecamWallpaper/LivecamWallpaperRelease.entitlements;
CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Manual;
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 2;
DEVELOPMENT_ASSET_PATHS = "\"LivecamWallpaper/Preview Content\"";
DEVELOPMENT_TEAM = "";
ENABLE_HARDENED_RUNTIME = YES;
ENABLE_PREVIEWS = YES;
INFOPLIST_FILE = LivecamWallpaper/Info.plist;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.15;
MARKETING_VERSION = 0.1.0;
MARKETING_VERSION = 0.1.1;
PRODUCT_BUNDLE_IDENTIFIER = fr.pierreberger.LivecamWallpaper;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down
2 changes: 1 addition & 1 deletion LivecamWallpaper/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<key>CFBundleShortVersionString</key>
<string>$(MARKETING_VERSION)</string>
<key>CFBundleVersion</key>
<string>1</string>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>LSApplicationCategoryType</key>
<string>public.app-category.utilities</string>
<key>LSMinimumSystemVersion</key>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?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/>
</plist>

0 comments on commit 4ce05a7

Please sign in to comment.