diff --git a/Sources/main/HelloCLT.xcodeproj/project.pbxproj b/Sources/main/HelloCLT.xcodeproj/project.pbxproj index e92c528..967735d 100644 --- a/Sources/main/HelloCLT.xcodeproj/project.pbxproj +++ b/Sources/main/HelloCLT.xcodeproj/project.pbxproj @@ -26,6 +26,7 @@ /* Begin PBXFileReference section */ 6FC153142820EFB500D881F3 /* HelloCLT */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = HelloCLT; sourceTree = BUILT_PRODUCTS_DIR; }; 6FC153172820EFB500D881F3 /* main.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = main.swift; sourceTree = ""; }; + EC366D91299AB3FD000F3B6E /* HelloCLT.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = HelloCLT.entitlements; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -60,6 +61,7 @@ 6FC153162820EFB500D881F3 /* HelloCLT */ = { isa = PBXGroup; children = ( + EC366D91299AB3FD000F3B6E /* HelloCLT.entitlements */, 6FC153172820EFB500D881F3 /* main.swift */, ); path = HelloCLT; @@ -258,9 +260,10 @@ 6FC1531C2820EFB500D881F3 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { + CODE_SIGN_ENTITLEMENTS = HelloCLT/HelloCLT.entitlements; CODE_SIGN_STYLE = Automatic; - DEVELOPMENT_TEAM = 9NSYVG2S5B; - ENABLE_HARDENED_RUNTIME = YES; + DEVELOPMENT_TEAM = ""; + ENABLE_HARDENED_RUNTIME = NO; PRODUCT_BUNDLE_IDENTIFIER = fr.uca.iut; PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_VERSION = 5.0; @@ -270,9 +273,10 @@ 6FC1531D2820EFB500D881F3 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { + CODE_SIGN_ENTITLEMENTS = HelloCLT/HelloCLT.entitlements; CODE_SIGN_STYLE = Automatic; - DEVELOPMENT_TEAM = 9NSYVG2S5B; - ENABLE_HARDENED_RUNTIME = YES; + DEVELOPMENT_TEAM = ""; + ENABLE_HARDENED_RUNTIME = NO; PRODUCT_BUNDLE_IDENTIFIER = fr.uca.iut; PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_VERSION = 5.0; diff --git a/Sources/main/HelloCLT/HelloCLT.entitlements b/Sources/main/HelloCLT/HelloCLT.entitlements new file mode 100644 index 0000000..0c67376 --- /dev/null +++ b/Sources/main/HelloCLT/HelloCLT.entitlements @@ -0,0 +1,5 @@ + + + + + diff --git a/Sources/main/HelloCLT/main.swift b/Sources/main/HelloCLT/main.swift index 5479654..e57dc80 100644 --- a/Sources/main/HelloCLT/main.swift +++ b/Sources/main/HelloCLT/main.swift @@ -7,7 +7,7 @@ import Foundation -import MyJeux +import HelloLibrary let lecteur = Lecteur() let afficheur = Afficheur()