File tree 6 files changed +14
-9
lines changed
Navigation-based Application
6 files changed +14
-9
lines changed Original file line number Diff line number Diff line change 56
56
-Wfour-char-constants
57
57
-Wglobal-constructors
58
58
-Wgnu-designator
59
+ -Wgnu-static-float-init
59
60
-Wgnu
60
61
-Wheader-hygiene
61
62
-Widiomatic-parentheses
Original file line number Diff line number Diff line change 12
12
<string >___EXECUTABLE_NAME___ </string >
13
13
<key >product </key >
14
14
<string >___PRODUCT_NAME___ </string >
15
+ <key >projectType </key >
16
+ <string >Application </string >
15
17
<key >frameworks </key >
16
18
<array >
17
19
<string >UIKit </string >
Original file line number Diff line number Diff line change 12
12
<string >___EXECUTABLE_NAME___ </string >
13
13
<key >product </key >
14
14
<string >___PRODUCT_NAME___ </string >
15
+ <key >projectType </key >
16
+ <string >Application </string >
15
17
<key >frameworks </key >
16
18
<array >
17
19
<string >UIKit </string >
Original file line number Diff line number Diff line change 12
12
<string >___EXECUTABLE_NAME___ </string >
13
13
<key >product </key >
14
14
<string >___PRODUCT_NAME___ </string >
15
+ <key >projectType </key >
16
+ <string >Console </string >
15
17
<key >frameworks </key >
16
18
<array >
17
19
</array >
Original file line number Diff line number Diff line change @@ -242,7 +242,7 @@ void CompilerOrganizer::parseError(const String& error)
242
242
}
243
243
else if (expectingSupplementaryOutput==1 )
244
244
{
245
- if (error.length ()>4 && (error.substring (0 ,4 ).equals (" " ) || error.charAt (0 )==' \t ' ))
245
+ if (error.length ()>2 && (error.substring (0 ,2 ).equals (" " ) || error.charAt (0 )==' \t ' ))
246
246
{
247
247
currentError.addSupplementaryOutput (error);
248
248
return ;
Original file line number Diff line number Diff line change @@ -270,7 +270,6 @@ void CompilerThread::run()
270
270
for (int i=0 ; i<fakeCompiling.size (); i++)
271
271
{
272
272
String relPath = fakeCompiling.get (i);
273
-
274
273
CompilerThread_ChangeStatus (this , (String)" Reading bin/build/" + relPath + " .output" );
275
274
276
275
String fullPath = buildFolder + ' /' + relPath + " .output" ;
@@ -339,7 +338,12 @@ void CompilerThread::run()
339
338
}
340
339
}
341
340
342
- if (result!=0 )
341
+ if (result==0 )
342
+ {
343
+ projBuildInfo.getEditedFiles ().clear ();
344
+ ProjectBuildInfo_saveBuildInfoPlist (&projBuildInfoStruct, &projDataStruct);
345
+ }
346
+ else
343
347
{
344
348
CompilerThread_ChangeStatus (this , " Failed" );
345
349
CompilerThread_FinishReciever (this , result);
@@ -446,12 +450,6 @@ void CompilerThread::run()
446
450
}
447
451
}
448
452
449
- if (result==0 )
450
- {
451
- projBuildInfo.getEditedFiles ().clear ();
452
- ProjectBuildInfo_saveBuildInfoPlist (&projBuildInfoStruct, &projDataStruct);
453
- }
454
-
455
453
CompilerThread_FinishReciever (this , result);
456
454
}
457
455
You can’t perform that action at this time.
0 commit comments