Skip to content

Commit 632dfe7

Browse files
committed
Moved the Development Team into an xcconfig
1 parent 1f4046b commit 632dfe7

File tree

2 files changed

+30
-9
lines changed

2 files changed

+30
-9
lines changed

Configs/BaseTeam.xcconfig

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
//
2+
// BaseTeam.xcconfig
3+
// Port Map
4+
//
5+
// Created by dom on 25.09.18.
6+
//
7+
8+
// Configuration settings file format documentation can be found at:
9+
// https://help.apple.com/xcode/#/dev745c5c974
10+
11+
DEVELOPMENT_TEAM = <YOURTEAMHERE>
12+
// CODE_SIGN_IDENTITY = Developer ID Application
13+
// PROVISIONING_PROFILE_SPECIFIER = PortMapDeveloperID

Port Map.xcodeproj/project.pbxproj

Lines changed: 17 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,7 @@
170170
F214E6060D5F646E00A06962 /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = natecho/main.m; sourceTree = "<group>"; };
171171
F214E60A0D5F64BF00A06962 /* AppController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppController.h; path = natecho/AppController.h; sourceTree = "<group>"; };
172172
F214E60B0D5F64BF00A06962 /* AppController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppController.m; path = natecho/AppController.m; sourceTree = "<group>"; };
173+
F2170211215A8A14007A2C35 /* BaseTeam.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = BaseTeam.xcconfig; sourceTree = "<group>"; };
173174
F217EF200D6082B40028E112 /* TCPServer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TCPServer.h; path = natecho/TCPServer.h; sourceTree = "<group>"; };
174175
F217EF210D6082B40028E112 /* TCPServer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = TCPServer.m; path = natecho/TCPServer.m; sourceTree = "<group>"; };
175176
F21B76970DB73CFC00942BC0 /* upnpc-static */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = "upnpc-static"; sourceTree = BUILT_PRODUCTS_DIR; };
@@ -321,6 +322,7 @@
321322
29B97314FDCFA39411CA2CEA /* PortMapper */ = {
322323
isa = PBXGroup;
323324
children = (
325+
F2170210215A89DE007A2C35 /* Configs */,
324326
F214E5F10D5F600B00A06962 /* NATEcho.app */,
325327
F2C6600B0D50C34500820CAE /* Port Map */,
326328
F2C65BDD0D50B16100820CAE /* TCMPortMapper.framework */,
@@ -377,6 +379,14 @@
377379
name = "Other Sources";
378380
sourceTree = "<group>";
379381
};
382+
F2170210215A89DE007A2C35 /* Configs */ = {
383+
isa = PBXGroup;
384+
children = (
385+
F2170211215A8A14007A2C35 /* BaseTeam.xcconfig */,
386+
);
387+
path = Configs;
388+
sourceTree = "<group>";
389+
};
380390
F2301B000D685C1B00728699 /* miniupnpc */ = {
381391
isa = PBXGroup;
382392
children = (
@@ -916,9 +926,8 @@
916926
318011A10D4DEC8500BE3B28 /* Debug */ = {
917927
isa = XCBuildConfiguration;
918928
buildSettings = {
919-
CODE_SIGN_IDENTITY = "";
929+
CODE_SIGN_IDENTITY = "Mac Developer";
920930
CODE_SIGN_STYLE = Automatic;
921-
DEVELOPMENT_TEAM = "";
922931
DYLIB_COMPATIBILITY_VERSION = 1;
923932
DYLIB_CURRENT_VERSION = 1;
924933
FRAMEWORK_VERSION = A;
@@ -950,10 +959,9 @@
950959
318011A20D4DEC8500BE3B28 /* Release */ = {
951960
isa = XCBuildConfiguration;
952961
buildSettings = {
953-
CODE_SIGN_IDENTITY = "";
962+
CODE_SIGN_IDENTITY = "Mac Developer";
954963
CODE_SIGN_STYLE = Automatic;
955964
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
956-
DEVELOPMENT_TEAM = "";
957965
DYLIB_COMPATIBILITY_VERSION = 1;
958966
DYLIB_CURRENT_VERSION = 1;
959967
FRAMEWORK_VERSION = A;
@@ -986,6 +994,7 @@
986994
};
987995
C01FCF4F08A954540054247B /* Debug */ = {
988996
isa = XCBuildConfiguration;
997+
baseConfigurationReference = F2170211215A8A14007A2C35 /* BaseTeam.xcconfig */;
989998
buildSettings = {
990999
ALWAYS_SEARCH_USER_PATHS = NO;
9911000
CLANG_ENABLE_MODULES = YES;
@@ -1026,6 +1035,7 @@
10261035
};
10271036
C01FCF5008A954540054247B /* Release */ = {
10281037
isa = XCBuildConfiguration;
1038+
baseConfigurationReference = F2170211215A8A14007A2C35 /* BaseTeam.xcconfig */;
10291039
buildSettings = {
10301040
ALWAYS_SEARCH_USER_PATHS = NO;
10311041
CLANG_ENABLE_MODULES = YES;
@@ -1203,7 +1213,7 @@
12031213
ASSETCATALOG_COMPILER_APPICON_NAME = PortMap;
12041214
CODE_SIGN_ENTITLEMENTS = "Port Map.entitlements";
12051215
CODE_SIGN_IDENTITY = "Mac Developer";
1206-
CODE_SIGN_STYLE = Automatic;
1216+
CODE_SIGN_STYLE = Manual;
12071217
ENABLE_HARDENED_RUNTIME = YES;
12081218
GCC_DYNAMIC_NO_PIC = NO;
12091219
GCC_MODEL_TUNING = G5;
@@ -1218,7 +1228,6 @@
12181228
);
12191229
PRODUCT_BUNDLE_IDENTIFIER = de.monkeydom.TCMPortMapper.PortMap;
12201230
PRODUCT_NAME = "Port Map";
1221-
PROVISIONING_PROFILE_SPECIFIER = "";
12221231
WRAPPER_EXTENSION = app;
12231232
ZERO_LINK = YES;
12241233
};
@@ -1229,8 +1238,8 @@
12291238
buildSettings = {
12301239
ASSETCATALOG_COMPILER_APPICON_NAME = PortMap;
12311240
CODE_SIGN_ENTITLEMENTS = "Port Map.entitlements";
1232-
CODE_SIGN_IDENTITY = "Mac Developer";
1233-
CODE_SIGN_STYLE = Automatic;
1241+
CODE_SIGN_IDENTITY = "Developer ID Application";
1242+
CODE_SIGN_STYLE = Manual;
12341243
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
12351244
ENABLE_HARDENED_RUNTIME = YES;
12361245
GCC_MODEL_TUNING = G5;
@@ -1244,7 +1253,6 @@
12441253
);
12451254
PRODUCT_BUNDLE_IDENTIFIER = de.monkeydom.TCMPortMapper.PortMap;
12461255
PRODUCT_NAME = "Port Map";
1247-
PROVISIONING_PROFILE_SPECIFIER = "";
12481256
WRAPPER_EXTENSION = app;
12491257
ZERO_LINK = NO;
12501258
};

0 commit comments

Comments
 (0)