Browse Source

Xcode update

Hongtae Kim 7 years ago
parent
commit
b4be7b0050
2 changed files with 80 additions and 60 deletions
  1. 14
    14
      TestApp1/TestApp1.cpp
  2. 66
    46
      TestApp1/TestApp1.xcodeproj/project.pbxproj

+ 14
- 14
TestApp1/TestApp1.cpp View File

@@ -15,21 +15,21 @@ public:
15 15
 	void OnInitialize(void) override
16 16
 	{
17 17
 		DKLog("---- SystemPath ----");
18
-		DKLog("SystemRoot: %ls", DefaultPath(SystemPath::SystemRoot));
19
-		DKLog("AppRoot: %ls", DefaultPath(SystemPath::AppRoot));
20
-		DKLog("AppResource: %ls", DefaultPath(SystemPath::AppResource));
21
-		DKLog("AppExecutable: %ls", DefaultPath(SystemPath::AppExecutable));
22
-		DKLog("AppData: %ls", DefaultPath(SystemPath::AppData));
23
-		DKLog("UserHome: %ls", DefaultPath(SystemPath::UserHome));
24
-		DKLog("UserDocuments: %ls", DefaultPath(SystemPath::UserDocuments));
25
-		DKLog("UserPreferences: %ls", DefaultPath(SystemPath::UserPreferences));
26
-		DKLog("UserCache: %ls", DefaultPath(SystemPath::UserCache));
27
-		DKLog("UserTemp: %ls", DefaultPath(SystemPath::UserTemp));
18
+		DKLog("SystemRoot: %ls", (const wchar_t*)DefaultPath(SystemPath::SystemRoot));
19
+		DKLog("AppRoot: %ls", (const wchar_t*)DefaultPath(SystemPath::AppRoot));
20
+		DKLog("AppResource: %ls", (const wchar_t*)DefaultPath(SystemPath::AppResource));
21
+		DKLog("AppExecutable: %ls", (const wchar_t*)DefaultPath(SystemPath::AppExecutable));
22
+		DKLog("AppData: %ls", (const wchar_t*)DefaultPath(SystemPath::AppData));
23
+		DKLog("UserHome: %ls", (const wchar_t*)DefaultPath(SystemPath::UserHome));
24
+		DKLog("UserDocuments: %ls", (const wchar_t*)DefaultPath(SystemPath::UserDocuments));
25
+		DKLog("UserPreferences: %ls", (const wchar_t*)DefaultPath(SystemPath::UserPreferences));
26
+		DKLog("UserCache: %ls", (const wchar_t*)DefaultPath(SystemPath::UserCache));
27
+		DKLog("UserTemp: %ls", (const wchar_t*)DefaultPath(SystemPath::UserTemp));
28 28
 		DKLog("---- ProcessInfo ----");
29
-		DKLog("HostName: %ls", ProcessInfoString(ProcessInfo::HostName));
30
-		DKLog("OsName: %ls", ProcessInfoString(ProcessInfo::OsName));
31
-		DKLog("UserName: %ls", ProcessInfoString(ProcessInfo::UserName));
32
-		DKLog("ModulePath: %ls", ProcessInfoString(ProcessInfo::ModulePath));
29
+		DKLog("HostName: %ls", (const wchar_t*)ProcessInfoString(ProcessInfo::HostName));
30
+		DKLog("OsName: %ls", (const wchar_t*)ProcessInfoString(ProcessInfo::OsName));
31
+		DKLog("UserName: %ls", (const wchar_t*)ProcessInfoString(ProcessInfo::UserName));
32
+		DKLog("ModulePath: %ls", (const wchar_t*)ProcessInfoString(ProcessInfo::ModulePath));
33 33
 
34 34
 		thread = DKThread::Create(DKFunction([this]()
35 35
 		{

+ 66
- 46
TestApp1/TestApp1.xcodeproj/project.pbxproj View File

@@ -7,11 +7,14 @@
7 7
 	objects = {
8 8
 
9 9
 /* Begin PBXBuildFile section */
10
-		66DA89301DD1898C00338015 /* libDK.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 66DA89231DD1895700338015 /* libDK.a */; };
11
-		66DA89311DD1899500338015 /* libDK.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 66DA89251DD1895700338015 /* libDK.a */; };
12 10
 		66DA89941DD3117F00338015 /* TestApp1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 844A9A801DD0C080007DCC89 /* TestApp1.cpp */; };
13 11
 		66DA89971DD3118000338015 /* TestApp1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 844A9A801DD0C080007DCC89 /* TestApp1.cpp */; };
14 12
 		66DA899B1DD3164E00338015 /* AppKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 66DA899A1DD3164E00338015 /* AppKit.framework */; };
13
+		840D5D3B1DDA07B2009DA369 /* DK.xcodeproj in Resources */ = {isa = PBXBuildFile; fileRef = 840D5D3A1DDA07B2009DA369 /* DK.xcodeproj */; };
14
+		840D5D921DDA08C2009DA369 /* libDK.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 840D5D891DDA0890009DA369 /* libDK.a */; };
15
+		840D5D931DDA08CA009DA369 /* libDK.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 840D5D871DDA0890009DA369 /* libDK.a */; };
16
+		840D5DEC1DDA233E009DA369 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 840D5DEB1DDA233E009DA369 /* UIKit.framework */; };
17
+		840D5DF01DDA23BD009DA369 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 840D5DEF1DDA23BD009DA369 /* Foundation.framework */; };
15 18
 		844A9A851DD0C080007DCC89 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 844A9A781DD0C080007DCC89 /* Assets.xcassets */; };
16 19
 		844A9A871DD0C080007DCC89 /* small.ico in Resources */ = {isa = PBXBuildFile; fileRef = 844A9A7C1DD0C080007DCC89 /* small.ico */; };
17 20
 		844A9A881DD0C080007DCC89 /* TestApp1.ico in Resources */ = {isa = PBXBuildFile; fileRef = 844A9A7E1DD0C080007DCC89 /* TestApp1.ico */; };
@@ -21,47 +24,47 @@
21 24
 /* End PBXBuildFile section */
22 25
 
23 26
 /* Begin PBXContainerItemProxy section */
24
-		66DA89221DD1895700338015 /* PBXContainerItemProxy */ = {
27
+		840D5D861DDA0890009DA369 /* PBXContainerItemProxy */ = {
25 28
 			isa = PBXContainerItemProxy;
26
-			containerPortal = 66DA891B1DD1895700338015 /* DK.xcodeproj */;
29
+			containerPortal = 840D5D3A1DDA07B2009DA369 /* DK.xcodeproj */;
27 30
 			proxyType = 2;
28 31
 			remoteGlobalIDString = 84E42A5C13AF8B4200BF31EA;
29 32
 			remoteInfo = DK_macOS_static;
30 33
 		};
31
-		66DA89241DD1895700338015 /* PBXContainerItemProxy */ = {
34
+		840D5D881DDA0890009DA369 /* PBXContainerItemProxy */ = {
32 35
 			isa = PBXContainerItemProxy;
33
-			containerPortal = 66DA891B1DD1895700338015 /* DK.xcodeproj */;
36
+			containerPortal = 840D5D3A1DDA07B2009DA369 /* DK.xcodeproj */;
34 37
 			proxyType = 2;
35 38
 			remoteGlobalIDString = 84E42A5D13AF8B4200BF31EA;
36 39
 			remoteInfo = DK_iOS_static;
37 40
 		};
38
-		66DA89261DD1895700338015 /* PBXContainerItemProxy */ = {
41
+		840D5D8A1DDA0890009DA369 /* PBXContainerItemProxy */ = {
39 42
 			isa = PBXContainerItemProxy;
40
-			containerPortal = 66DA891B1DD1895700338015 /* DK.xcodeproj */;
43
+			containerPortal = 840D5D3A1DDA07B2009DA369 /* DK.xcodeproj */;
41 44
 			proxyType = 2;
42 45
 			remoteGlobalIDString = 840CA4ED1928946800689BB6;
43 46
 			remoteInfo = DK_macOS;
44 47
 		};
45
-		66DA89281DD1895700338015 /* PBXContainerItemProxy */ = {
48
+		840D5D8C1DDA0890009DA369 /* PBXContainerItemProxy */ = {
46 49
 			isa = PBXContainerItemProxy;
47
-			containerPortal = 66DA891B1DD1895700338015 /* DK.xcodeproj */;
50
+			containerPortal = 840D5D3A1DDA07B2009DA369 /* DK.xcodeproj */;
48 51
 			proxyType = 2;
49 52
 			remoteGlobalIDString = 84798B7119E51CBA009378A6;
50 53
 			remoteInfo = DK_iOS;
51 54
 		};
52
-		66DA892C1DD1896700338015 /* PBXContainerItemProxy */ = {
55
+		840D5D8E1DDA08A8009DA369 /* PBXContainerItemProxy */ = {
53 56
 			isa = PBXContainerItemProxy;
54
-			containerPortal = 66DA891B1DD1895700338015 /* DK.xcodeproj */;
57
+			containerPortal = 840D5D3A1DDA07B2009DA369 /* DK.xcodeproj */;
55 58
 			proxyType = 1;
56
-			remoteGlobalIDString = 84C5F9EC13013FDD005F4449;
57
-			remoteInfo = DK_iOS_static;
59
+			remoteGlobalIDString = D2AAC045055464E500DB518D;
60
+			remoteInfo = DK_macOS_static;
58 61
 		};
59
-		66DA892E1DD1896C00338015 /* PBXContainerItemProxy */ = {
62
+		840D5D901DDA08AD009DA369 /* PBXContainerItemProxy */ = {
60 63
 			isa = PBXContainerItemProxy;
61
-			containerPortal = 66DA891B1DD1895700338015 /* DK.xcodeproj */;
64
+			containerPortal = 840D5D3A1DDA07B2009DA369 /* DK.xcodeproj */;
62 65
 			proxyType = 1;
63
-			remoteGlobalIDString = D2AAC045055464E500DB518D;
64
-			remoteInfo = DK_macOS_static;
66
+			remoteGlobalIDString = 84C5F9EC13013FDD005F4449;
67
+			remoteInfo = DK_iOS_static;
65 68
 		};
66 69
 /* End PBXContainerItemProxy section */
67 70
 
@@ -69,8 +72,10 @@
69 72
 		66DA89151DD1887A00338015 /* DK.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = DK.framework; path = ../../dkgl2/DK/build/Debug/DK.framework; sourceTree = "<group>"; };
70 73
 		66DA89171DD1891900338015 /* libDK.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libDK.a; path = ../../dkgl2/DK/build/Debug/libDK.a; sourceTree = "<group>"; };
71 74
 		66DA89191DD1892200338015 /* libDK.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libDK.a; path = "../../dkgl2/DK/build/Debug-iphoneos/libDK.a"; sourceTree = "<group>"; };
72
-		66DA891B1DD1895700338015 /* DK.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = DK.xcodeproj; path = /Users/plgrim/Desktop/DK/dkgl2_test/../dkgl2/DK/DK.xcodeproj; sourceTree = "<absolute>"; };
73 75
 		66DA899A1DD3164E00338015 /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = System/Library/Frameworks/AppKit.framework; sourceTree = SDKROOT; };
76
+		840D5D3A1DDA07B2009DA369 /* DK.xcodeproj */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "wrapper.pb-project"; name = DK.xcodeproj; path = ../DK/DK.xcodeproj; sourceTree = "<group>"; };
77
+		840D5DEB1DDA233E009DA369 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.1.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; };
78
+		840D5DEF1DDA23BD009DA369 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.1.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };
74 79
 		844A9A441DD0BCFD007DCC89 /* TestApp1_macOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = TestApp1_macOS.app; sourceTree = BUILT_PRODUCTS_DIR; };
75 80
 		844A9A5C1DD0BEDD007DCC89 /* TestApp1_iOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = TestApp1_iOS.app; sourceTree = BUILT_PRODUCTS_DIR; };
76 81
 		844A9A741DD0C080007DCC89 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
@@ -91,8 +96,8 @@
91 96
 			isa = PBXFrameworksBuildPhase;
92 97
 			buildActionMask = 2147483647;
93 98
 			files = (
99
+				840D5D931DDA08CA009DA369 /* libDK.a in Frameworks */,
94 100
 				66DA899B1DD3164E00338015 /* AppKit.framework in Frameworks */,
95
-				66DA89301DD1898C00338015 /* libDK.a in Frameworks */,
96 101
 			);
97 102
 			runOnlyForDeploymentPostprocessing = 0;
98 103
 		};
@@ -100,7 +105,9 @@
100 105
 			isa = PBXFrameworksBuildPhase;
101 106
 			buildActionMask = 2147483647;
102 107
 			files = (
103
-				66DA89311DD1899500338015 /* libDK.a in Frameworks */,
108
+				840D5DF01DDA23BD009DA369 /* Foundation.framework in Frameworks */,
109
+				840D5DEC1DDA233E009DA369 /* UIKit.framework in Frameworks */,
110
+				840D5D921DDA08C2009DA369 /* libDK.a in Frameworks */,
104 111
 			);
105 112
 			runOnlyForDeploymentPostprocessing = 0;
106 113
 		};
@@ -110,6 +117,8 @@
110 117
 		66DA89141DD1887A00338015 /* Frameworks */ = {
111 118
 			isa = PBXGroup;
112 119
 			children = (
120
+				840D5DEF1DDA23BD009DA369 /* Foundation.framework */,
121
+				840D5DEB1DDA233E009DA369 /* UIKit.framework */,
113 122
 				66DA899A1DD3164E00338015 /* AppKit.framework */,
114 123
 				66DA89191DD1892200338015 /* libDK.a */,
115 124
 				66DA89171DD1891900338015 /* libDK.a */,
@@ -118,13 +127,13 @@
118 127
 			name = Frameworks;
119 128
 			sourceTree = "<group>";
120 129
 		};
121
-		66DA891C1DD1895700338015 /* Products */ = {
130
+		840D5D801DDA088F009DA369 /* Products */ = {
122 131
 			isa = PBXGroup;
123 132
 			children = (
124
-				66DA89231DD1895700338015 /* libDK.a */,
125
-				66DA89251DD1895700338015 /* libDK.a */,
126
-				66DA89271DD1895700338015 /* DK.framework */,
127
-				66DA89291DD1895700338015 /* DK.framework */,
133
+				840D5D871DDA0890009DA369 /* libDK.a */,
134
+				840D5D891DDA0890009DA369 /* libDK.a */,
135
+				840D5D8B1DDA0890009DA369 /* DK.framework */,
136
+				840D5D8D1DDA0890009DA369 /* DK.framework */,
128 137
 			);
129 138
 			name = Products;
130 139
 			sourceTree = "<group>";
@@ -132,7 +141,7 @@
132 141
 		844A9A3B1DD0BCFD007DCC89 = {
133 142
 			isa = PBXGroup;
134 143
 			children = (
135
-				66DA891B1DD1895700338015 /* DK.xcodeproj */,
144
+				840D5D3A1DDA07B2009DA369 /* DK.xcodeproj */,
136 145
 				66DA89141DD1887A00338015 /* Frameworks */,
137 146
 				844A9A451DD0BCFD007DCC89 /* Products */,
138 147
 				844A9A461DD0BCFD007DCC89 /* TestApp1 */,
@@ -204,7 +213,7 @@
204 213
 			buildRules = (
205 214
 			);
206 215
 			dependencies = (
207
-				66DA892F1DD1896C00338015 /* PBXTargetDependency */,
216
+				840D5D8F1DDA08A8009DA369 /* PBXTargetDependency */,
208 217
 			);
209 218
 			name = TestApp1_macOS;
210 219
 			productName = TestApp1;
@@ -222,7 +231,7 @@
222 231
 			buildRules = (
223 232
 			);
224 233
 			dependencies = (
225
-				66DA892D1DD1896700338015 /* PBXTargetDependency */,
234
+				840D5D911DDA08AD009DA369 /* PBXTargetDependency */,
226 235
 			);
227 236
 			name = TestApp1_iOS;
228 237
 			productName = TestApp1_iOS;
@@ -240,10 +249,12 @@
240 249
 				TargetAttributes = {
241 250
 					844A9A431DD0BCFD007DCC89 = {
242 251
 						CreatedOnToolsVersion = 8.1;
252
+						DevelopmentTeam = F599L375TZ;
243 253
 						ProvisioningStyle = Automatic;
244 254
 					};
245 255
 					844A9A5B1DD0BEDD007DCC89 = {
246 256
 						CreatedOnToolsVersion = 8.1;
257
+						DevelopmentTeam = F599L375TZ;
247 258
 						ProvisioningStyle = Automatic;
248 259
 					};
249 260
 				};
@@ -261,8 +272,8 @@
261 272
 			projectDirPath = "";
262 273
 			projectReferences = (
263 274
 				{
264
-					ProductGroup = 66DA891C1DD1895700338015 /* Products */;
265
-					ProjectRef = 66DA891B1DD1895700338015 /* DK.xcodeproj */;
275
+					ProductGroup = 840D5D801DDA088F009DA369 /* Products */;
276
+					ProjectRef = 840D5D3A1DDA07B2009DA369 /* DK.xcodeproj */;
266 277
 				},
267 278
 			);
268 279
 			projectRoot = "";
@@ -274,32 +285,32 @@
274 285
 /* End PBXProject section */
275 286
 
276 287
 /* Begin PBXReferenceProxy section */
277
-		66DA89231DD1895700338015 /* libDK.a */ = {
288
+		840D5D871DDA0890009DA369 /* libDK.a */ = {
278 289
 			isa = PBXReferenceProxy;
279 290
 			fileType = archive.ar;
280 291
 			path = libDK.a;
281
-			remoteRef = 66DA89221DD1895700338015 /* PBXContainerItemProxy */;
292
+			remoteRef = 840D5D861DDA0890009DA369 /* PBXContainerItemProxy */;
282 293
 			sourceTree = BUILT_PRODUCTS_DIR;
283 294
 		};
284
-		66DA89251DD1895700338015 /* libDK.a */ = {
295
+		840D5D891DDA0890009DA369 /* libDK.a */ = {
285 296
 			isa = PBXReferenceProxy;
286 297
 			fileType = archive.ar;
287 298
 			path = libDK.a;
288
-			remoteRef = 66DA89241DD1895700338015 /* PBXContainerItemProxy */;
299
+			remoteRef = 840D5D881DDA0890009DA369 /* PBXContainerItemProxy */;
289 300
 			sourceTree = BUILT_PRODUCTS_DIR;
290 301
 		};
291
-		66DA89271DD1895700338015 /* DK.framework */ = {
302
+		840D5D8B1DDA0890009DA369 /* DK.framework */ = {
292 303
 			isa = PBXReferenceProxy;
293 304
 			fileType = wrapper.framework;
294 305
 			path = DK.framework;
295
-			remoteRef = 66DA89261DD1895700338015 /* PBXContainerItemProxy */;
306
+			remoteRef = 840D5D8A1DDA0890009DA369 /* PBXContainerItemProxy */;
296 307
 			sourceTree = BUILT_PRODUCTS_DIR;
297 308
 		};
298
-		66DA89291DD1895700338015 /* DK.framework */ = {
309
+		840D5D8D1DDA0890009DA369 /* DK.framework */ = {
299 310
 			isa = PBXReferenceProxy;
300 311
 			fileType = wrapper.framework;
301 312
 			path = DK.framework;
302
-			remoteRef = 66DA89281DD1895700338015 /* PBXContainerItemProxy */;
313
+			remoteRef = 840D5D8C1DDA0890009DA369 /* PBXContainerItemProxy */;
303 314
 			sourceTree = BUILT_PRODUCTS_DIR;
304 315
 		};
305 316
 /* End PBXReferenceProxy section */
@@ -313,6 +324,7 @@
313 324
 				844A9A871DD0C080007DCC89 /* small.ico in Resources */,
314 325
 				844A9A851DD0C080007DCC89 /* Assets.xcassets in Resources */,
315 326
 				844A9A881DD0C080007DCC89 /* TestApp1.ico in Resources */,
327
+				840D5D3B1DDA07B2009DA369 /* DK.xcodeproj in Resources */,
316 328
 			);
317 329
 			runOnlyForDeploymentPostprocessing = 0;
318 330
 		};
@@ -347,15 +359,15 @@
347 359
 /* End PBXSourcesBuildPhase section */
348 360
 
349 361
 /* Begin PBXTargetDependency section */
350
-		66DA892D1DD1896700338015 /* PBXTargetDependency */ = {
362
+		840D5D8F1DDA08A8009DA369 /* PBXTargetDependency */ = {
351 363
 			isa = PBXTargetDependency;
352
-			name = DK_iOS_static;
353
-			targetProxy = 66DA892C1DD1896700338015 /* PBXContainerItemProxy */;
364
+			name = DK_macOS_static;
365
+			targetProxy = 840D5D8E1DDA08A8009DA369 /* PBXContainerItemProxy */;
354 366
 		};
355
-		66DA892F1DD1896C00338015 /* PBXTargetDependency */ = {
367
+		840D5D911DDA08AD009DA369 /* PBXTargetDependency */ = {
356 368
 			isa = PBXTargetDependency;
357
-			name = DK_macOS_static;
358
-			targetProxy = 66DA892E1DD1896C00338015 /* PBXContainerItemProxy */;
369
+			name = DK_iOS_static;
370
+			targetProxy = 840D5D901DDA08AD009DA369 /* PBXContainerItemProxy */;
359 371
 		};
360 372
 /* End PBXTargetDependency section */
361 373
 
@@ -404,7 +416,7 @@
404 416
 				HEADER_SEARCH_PATHS = ../DK;
405 417
 				MACOSX_DEPLOYMENT_TARGET = 10.12;
406 418
 				MTL_ENABLE_DEBUG_INFO = YES;
407
-				ONLY_ACTIVE_ARCH = YES;
419
+				ONLY_ACTIVE_ARCH = NO;
408 420
 				SDKROOT = macosx;
409 421
 			};
410 422
 			name = Debug;
@@ -454,8 +466,11 @@
454 466
 		844A9A561DD0BCFD007DCC89 /* Debug */ = {
455 467
 			isa = XCBuildConfiguration;
456 468
 			buildSettings = {
469
+				ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
457 470
 				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
471
+				CODE_SIGN_IDENTITY = "Mac Developer";
458 472
 				COMBINE_HIDPI_IMAGES = YES;
473
+				DEVELOPMENT_TEAM = F599L375TZ;
459 474
 				INFOPLIST_FILE = "$(SRCROOT)/macOS/Info.plist";
460 475
 				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks";
461 476
 				PRODUCT_BUNDLE_IDENTIFIER = com.icondb.TestApp1;
@@ -466,8 +481,11 @@
466 481
 		844A9A571DD0BCFD007DCC89 /* Release */ = {
467 482
 			isa = XCBuildConfiguration;
468 483
 			buildSettings = {
484
+				ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
469 485
 				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
486
+				CODE_SIGN_IDENTITY = "Mac Developer";
470 487
 				COMBINE_HIDPI_IMAGES = YES;
488
+				DEVELOPMENT_TEAM = F599L375TZ;
471 489
 				INFOPLIST_FILE = "$(SRCROOT)/macOS/Info.plist";
472 490
 				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks";
473 491
 				PRODUCT_BUNDLE_IDENTIFIER = com.icondb.TestApp1;
@@ -480,6 +498,7 @@
480 498
 			buildSettings = {
481 499
 				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
482 500
 				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
501
+				DEVELOPMENT_TEAM = F599L375TZ;
483 502
 				INFOPLIST_FILE = "$(SRCROOT)/iOS/Info.plist";
484 503
 				IPHONEOS_DEPLOYMENT_TARGET = 10.1;
485 504
 				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
@@ -495,6 +514,7 @@
495 514
 			buildSettings = {
496 515
 				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
497 516
 				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
517
+				DEVELOPMENT_TEAM = F599L375TZ;
498 518
 				INFOPLIST_FILE = "$(SRCROOT)/iOS/Info.plist";
499 519
 				IPHONEOS_DEPLOYMENT_TARGET = 10.1;
500 520
 				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";