Branch: refs/heads/master Author: Jiří Techet techet@gmail.com Committer: Jiří Techet techet@gmail.com Date: Fri, 05 Jul 2024 20:56:22 UTC Commit: 30d6574635b186962ef91fed47ff03b43e63170a https://github.com/geany/geany-osx/commit/30d6574635b186962ef91fed47ff03b43e...
Log Message: ----------- Add entitlements file and allow Geany to be used as a debugger
Modified Paths: -------------- Launcher/geany/geany.xcodeproj/project.pbxproj Launcher/geany/geany/geany.entitlements
Modified: Launcher/geany/geany.xcodeproj/project.pbxproj 6 lines changed, 5 insertions(+), 1 deletions(-) =================================================================== @@ -3,7 +3,7 @@ archiveVersion = 1; classes = { }; - objectVersion = 53; + objectVersion = 54; objects = {
/* Begin PBXBuildFile section */ @@ -25,6 +25,7 @@ /* Begin PBXFileReference section */ B12DCC472350EF9300301186 /* geany */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = geany; sourceTree = BUILT_PRODUCTS_DIR; }; B12DCC4A2350EF9300301186 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; }; + B13F6BA72C2631E6009C8CBF /* geany.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = geany.entitlements; sourceTree = "<group>"; }; /* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */ @@ -57,6 +58,7 @@ B12DCC492350EF9300301186 /* geany */ = { isa = PBXGroup; children = ( + B13F6BA72C2631E6009C8CBF /* geany.entitlements */, B12DCC4A2350EF9300301186 /* main.m */, ); path = geany; @@ -246,6 +248,7 @@ isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; + CODE_SIGN_ENTITLEMENTS = geany/geany.entitlements; CODE_SIGN_IDENTITY = ""; CODE_SIGN_STYLE = Automatic; DEVELOPMENT_TEAM = ""; @@ -258,6 +261,7 @@ isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD)"; + CODE_SIGN_ENTITLEMENTS = geany/geany.entitlements; CODE_SIGN_IDENTITY = ""; CODE_SIGN_STYLE = Automatic; DEVELOPMENT_TEAM = "";
Modified: Launcher/geany/geany/geany.entitlements 8 lines changed, 8 insertions(+), 0 deletions(-) =================================================================== @@ -0,0 +1,8 @@ +<?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> + <key>com.apple.security.cs.debugger</key> + <true/> +</dict> +</plist>
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).