From b6f4806fd6105d61ddd66557dffe2023e74e98b2 Mon Sep 17 00:00:00 2001 From: Roopesh Chander Date: Sat, 11 Aug 2018 13:04:46 +0530 Subject: Move DEVELOPMENT_TEAM into an xcconfig out of the git repo This is so that other developers can work on this codebase by copying Developer.xcconfig.template to Developer.xcconfig and setting the DEVELOPMENT_TEAM to their respective Team IDs. The Team IDs need not be checked into source control. Signed-off-by: Roopesh Chander --- WireGuard/WireGuard.xcodeproj/project.pbxproj | 4 ++++ WireGuard/WireGuard/Config/Developer.xcconfig.template | 4 ++++ 2 files changed, 8 insertions(+) create mode 100644 WireGuard/WireGuard/Config/Developer.xcconfig.template diff --git a/WireGuard/WireGuard.xcodeproj/project.pbxproj b/WireGuard/WireGuard.xcodeproj/project.pbxproj index 2e8a9c8..97c5d56 100644 --- a/WireGuard/WireGuard.xcodeproj/project.pbxproj +++ b/WireGuard/WireGuard.xcodeproj/project.pbxproj @@ -22,6 +22,7 @@ 6FF4AC1E211EC472002C96EB /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 6FF4AC21211EC472002C96EB /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 6FF4AC23211EC472002C96EB /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 6FF4AC2B211EC776002C96EB /* Developer.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Developer.xcconfig; path = Config/Developer.xcconfig; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -60,6 +61,7 @@ 6FF4AC1E211EC472002C96EB /* Assets.xcassets */, 6FF4AC20211EC472002C96EB /* LaunchScreen.storyboard */, 6FF4AC23211EC472002C96EB /* Info.plist */, + 6FF4AC2B211EC776002C96EB /* Developer.xcconfig */, ); path = WireGuard; sourceTree = ""; @@ -164,6 +166,7 @@ /* Begin XCBuildConfiguration section */ 6FF4AC24211EC472002C96EB /* Debug */ = { isa = XCBuildConfiguration; + baseConfigurationReference = 6FF4AC2B211EC776002C96EB /* Developer.xcconfig */; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; CLANG_ANALYZER_NONNULL = YES; @@ -224,6 +227,7 @@ }; 6FF4AC25211EC472002C96EB /* Release */ = { isa = XCBuildConfiguration; + baseConfigurationReference = 6FF4AC2B211EC776002C96EB /* Developer.xcconfig */; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; CLANG_ANALYZER_NONNULL = YES; diff --git a/WireGuard/WireGuard/Config/Developer.xcconfig.template b/WireGuard/WireGuard/Config/Developer.xcconfig.template new file mode 100644 index 0000000..5feef06 --- /dev/null +++ b/WireGuard/WireGuard/Config/Developer.xcconfig.template @@ -0,0 +1,4 @@ +// Developer.xcconfig + +// You Apple developer account's Team ID +DEVELOPMENT_TEAM = -- cgit v1.2.3-59-g8ed1b