ide;GlobalSettingsDialog; renamed GCC Prefix to GNU Toolchain Prefix and Execution...
[sdk] / ide / src / project / Project.ec
1 #ifdef ECERE_STATIC
2 public import static "ecere"
3 #else
4 public import "ecere"
5 #endif
6
7 import "DynamicString"
8
9 #ifndef MAKEFILE_GENERATOR
10 import "ide"
11 // We should have the .sln/.vcproj generation even on other platforms
12 // e.g. detect from an environment variable pointing to a Windows drive
13 #ifdef __WIN32__
14 import "vsSupport"
15 #endif
16 #endif
17
18 import "ProjectConfig"
19 import "ProjectNode"
20 import "IDESettings"
21
22 default:
23
24 static void DummyFunction()
25 {
26 int a;
27 a.OnFree();
28 }
29
30 private:
31
32 extern int __ecereVMethodID_class_OnCompare;
33 extern int __ecereVMethodID_class_OnFree;
34
35 IDESettings ideSettings;
36
37 IDESettingsContainer settingsContainer
38 {
39    driver = "JSON";
40    dataOwner = &ideSettings;
41    dataClass = class(IDESettings);
42
43    void OnLoad(GlobalSettingsData data)
44    {
45       IDESettings settings = (IDESettings)data;
46 #ifndef MAKEFILE_GENERATOR
47       globalSettingsDialog.ideSettings = settings;
48       ide.UpdateRecentMenus();
49 #endif
50    }
51 };
52
53 #ifdef MAKEFILE_GENERATOR
54 CompilerConfig defaultCompiler;
55 #endif
56
57 // LEGACY BINARY EPJ LOADING
58
59 SetBool ParseTrueFalseValue(char * string)
60 {
61    if(!strcmpi(string, "True")) return true;
62    return false;
63 }
64
65 void ParseArrayValue(Array<String> array, char * equal)
66 {
67    char * start, * comma;
68    char * string;
69    string = CopyString(equal);
70    start = string;
71    while(start)
72    {
73       comma = strstr(start, ",");
74       if(comma)
75          comma[0] = '\0';
76       array.Add(CopyString(start));
77       if(comma)
78          comma++;
79       if(comma)
80          comma++;
81       start = comma;
82    }
83    delete string;
84 }
85
86 void ProjectNode::LegacyBinaryLoadNode(File f)
87 {
88    int len, count, c;
89    int fileNameLen;
90
91    f.Read(&len, sizeof(len), 1);
92    name = new char[len+1];
93    fileNameLen = len;
94    f.Read(name, sizeof(char), len+1);
95    f.Read(&len, sizeof(len), 1);
96    fileNameLen += len;
97    path = new char[len+1];
98    f.Read(path, sizeof(char), len+1);
99    
100    /*
101    fileName = new char[fileNameLen+2];
102    strcpy(fileName, path);
103    if(fileName[0]) strcat(fileName, "/");
104    strcat(fileName, name);
105    */
106
107    f.Read(&type, sizeof(type), 1);
108    f.Read(&count, sizeof(count), 1);
109    
110    if(type == file)
111    {
112       nodeType = file;
113       icon = NodeIcons::SelectFileIcon(name);
114    }
115    else
116    {
117       nodeType = folder;
118       icon = NodeIcons::SelectNodeIcon(type);
119    }
120
121    if(count && !files) files = { };
122    for(c = 0; c < count; c++)
123    {
124       ProjectNode child { };
125       files.Add(child);
126       child.parent = this;
127       child.indent = indent + 1;
128       LegacyBinaryLoadNode(child, f);
129    }
130 }
131
132 /*void LegacyBinarySaveNode(File f)
133 {
134    int len;
135    ProjectNode child;
136    len = strlen(name);
137    f.Write(&len, sizeof(len), 1);
138    f.Write(name, sizeof(char), len+1);
139
140    if(type == project)
141    {
142       // Projects Absolute Path Are Not Saved
143       len = 0;
144       f.Write(&len, sizeof(len), 1);
145       f.Write(&len, sizeof(char), 1);
146    }
147    else
148    {
149       len = strlen(path);
150       f.Write(&len, sizeof(len), 1);
151       f.Write(path, sizeof(char), len+1);
152    }
153    f.Write(&type, sizeof(type), 1);
154    f.Write(&children.count, sizeof(children.count), 1);
155    for(child = children.first; child; child.next)
156       child.SaveNode(f);
157 }*/
158
159 void ProjectNode::LegacyAsciiSaveNode(File f, char * indentation, char * insidePath)
160 {
161    int len;
162    char printPath[MAX_LOCATION];
163
164    if(type == project && (files.count /*|| preprocessorDefs.first*/))
165    {
166       f.Printf("\n   Files\n");
167    }
168    else if(type == file)
169    {
170       if(!strcmp(path, insidePath))
171          f.Printf("%s - %s\n", indentation, name);
172       else
173       {
174          strcpy(printPath, path);
175          len = strlen(printPath);
176          if(len)
177             if(printPath[len-1] != '/')
178                strcat(printPath, "/");
179          strcat(printPath, name);
180          f.Printf("%s = %s\n", indentation, printPath);
181       }
182       if(files.count)
183          f.Printf("\nError\n\n");
184    }
185    else if(type == folder)
186    {
187       f.Printf("%s + %s\n", indentation, name);
188    }
189    else if(type == resources && files.count)
190    {
191       PathCatSlash(insidePath, path);
192       f.Printf("\n%sResources\n", indentation);
193       if(path && path[0])
194          f.Printf("%s   Path = %s\n", indentation, path);
195    }
196    
197    /*if(buildExclusions.first && type != project)
198    {
199       for(item = buildExclusions.first; item; item = item.next)
200       {
201          if(item == buildExclusions.first)
202             f.Printf("%s      Build Exclusions = %s", indentation, item.name);
203          else
204             f.Printf(", %s", item.name);
205       }
206       f.Printf("\n");
207    }
208
209    if(preprocessorDefs.first && (type == project || ((type == file || type == folder) && !isInResources)))
210    {
211       for(item = preprocessorDefs.first; item; item = item.next)
212       {
213          if(item == preprocessorDefs.first)
214             f.Printf("%s%s   Preprocessor Definitions = %s", indentation, type == project ? "" : "   ", item.name);
215          else
216             f.Printf(", %s", item.name);
217       }
218       f.Printf("\n");
219    }
220    */
221    
222    if(type == project && (files.count /*|| preprocessorDefs.first*/))
223    {
224       f.Printf("\n");
225       for(child : files)
226          LegacyAsciiSaveNode(child, f, indentation, insidePath);
227    }
228    else if(type == folder)
229    {
230       strcat(indentation, "   ");
231       // WHAT WAS THIS: strcpy(printPath, path);
232       // TOCHECK: why is Unix/PathCat not used here
233       len = strlen(insidePath);
234       if(len)
235          if(insidePath[len-1] != '/')
236             strcat(insidePath, "/");
237       strcat(insidePath, name);
238
239       for(child : files)
240          LegacyAsciiSaveNode(child, f, indentation, insidePath);
241       f.Printf("%s -\n", indentation);
242       indentation[strlen(indentation) - 3] = '\0';
243       StripLastDirectory(insidePath, insidePath);
244    }
245    else if(type == resources && files.count)
246    {
247       f.Printf("\n");
248       for(child : files)
249          LegacyAsciiSaveNode(child, f, indentation, insidePath);
250       StripLastDirectory(insidePath, insidePath);
251    }
252 }
253
254 /*
255 void ProjectConfig::LegacyProjectConfigSave(File f)
256 {
257    char * indentation = "      ";
258    //if(isCommonConfig)
259       //f.Printf("\n * Common\n");
260    //else
261       f.Printf("\n + %s\n", name);
262    f.Printf("\n   Compiler\n\n");
263    if(objDir.expression[0])
264       f.Printf("%sIntermediate Directory = %s\n", indentation, objDir.expression);
265    f.Printf("%sDebug = %s\n", indentation, (options.debug == true) ? "True" : "False");
266    switch(options.optimization)
267    {
268       // case none:   f.Printf("%sOptimize = %s\n", indentation, "None"); break;
269       case speed: f.Printf("%sOptimize = %s\n", indentation, "Speed"); break;
270       case size:  f.Printf("%sOptimize = %s\n", indentation, "Size");  break;
271    }
272    f.Printf("%sAllWarnings = %s\n", indentation, (options.warnings == all) ? "True" : "False");
273    if(options.profile)
274       f.Printf("%sProfile = %s\n", indentation, (options.profile == true) ? "True" : "False");
275    if(options.memoryGuard == true)
276       f.Printf("%sMemoryGuard = %s\n", indentation, (options.memoryGuard == true) ? "True" : "False");
277    if(options.strictNameSpaces == true)
278       f.Printf("%sStrict Name Spaces = %s\n", indentation, (options.strictNameSpaces == true) ? "True" : "False");
279    if(options.defaultNameSpace && strlen(options.defaultNameSpace))
280       f.Printf("%sDefault Name Space = %s\n", indentation, options.defaultNameSpace);
281     TOFIX: Compiler Bug {
282       if(options.preprocessorDefinitions.count)
283       {
284          bool isFirst = true;
285          for(item : options.preprocessorDefinitions)
286          {
287             if(isFirst)
288             {
289                f.Printf("\n%sPreprocessor Definitions = %s", indentation, item);
290                isFirst = false;
291             }
292             else
293                f.Printf(", %s", item);
294          }
295          f.Printf("\n");
296       }
297    }
298    if(options.includeDirs.count)
299    {
300       f.Printf("\n%sInclude Directories\n", indentation);
301       for(item : options.includeDirs)
302          f.Printf("%s - %s\n", indentation, name);
303       f.Printf("\n");
304    }
305
306    f.Printf("\n%sLinker\n\n", indentation);
307    f.Printf("%sTarget Name = %s\n", indentation, options.targetFileName);
308    switch(options.targetType)
309    {
310       case executable:     f.Printf("%sTarget Type = %s\n", indentation, "Executable"); break;
311       case sharedLibrary:  f.Printf("%sTarget Type = %s\n", indentation, "Shared");     break;
312       case staticLibrary:  f.Printf("%sTarget Type = %s\n", indentation, "Static");     break;
313    }
314    if(targetDir.expression[0])
315       f.Printf("%sTarget Directory = %s\n", indentation, targetDir.expression);
316    if(options.console)
317       f.Printf("%sConsole = %s\n", indentation, options.console ? "True" : "False");
318    if(options.compress)
319       f.Printf("%sCompress = %s\n", indentation, options.compress ? "True" : "False");
320    if(options.libraries.count)
321    {
322       bool isFirst = true;
323       for(item : options.libraries)
324       {
325          if(isFirst)
326          {
327             f.Printf("\n%sLibraries = %s", indentation, name);
328             isFirst = false;
329          }
330          else
331             f.Printf(", %s", item);
332       }
333       f.Printf("\n");
334    }
335    if(options.libraryDirs.count)
336    {
337       f.Printf("\n%sLibrary Directories\n\n", indentation);
338       for(item : options.libraryDirs)
339          f.Printf("       - %s\n", indentation, item);
340    }
341 }
342
343 void LegacyAsciiSaveProject(File f, Project project)
344 {
345    char indentation[128*3];
346    char path[MAX_LOCATION];
347
348    f.Printf("\nECERE Project File : Format Version 0.1b\n");
349    f.Printf("\nDescription\n%s\n.\n", project.description);
350    f.Printf("\nLicense\n%s\n.\n", project.license);
351    f.Printf("\nModule Name = %s\n", project.moduleName);
352    f.Printf("\n   Configurations\n");
353    //////////////////////////////////////commonConfig.Save(f, true);
354    for(cfg : project.configurations)
355       LegacyProjectConfigSave(cfg, f);
356
357    strcpy(indentation, "   ");
358    path[0] = '\0';
359    LegacyAsciiSaveNode(project.topNode, f, indentation, path);
360    // f.Printf("\n");
361    delete f;
362 }
363 */
364
365 // *** NEW JSON PROJECT FORMAT ***
366 public enum ProjectNodeType { file, folder };
367
368 // *******************************
369
370 define PEEK_RESOLUTION = (18.2 * 10);
371
372 // On Windows & UNIX
373 #define SEPS    "/"
374 #define SEP     '/'
375
376 static Array<String> notLinkerOptions
377 { [
378    "-static-libgcc",
379    "-shared",
380    "-static",
381    "-s",
382    "-shared-libgcc",
383    "-nostartfiles",
384    "-nodefaultlibs",
385    "-nostdlib",
386    "-pie",
387    "-rdynamic",
388    "-static-libasan",
389    "-static-libtsan",
390    "-static libstdc++",
391    "-symbolic",
392    "-Wl,"
393    //"-T ",
394    //"-Xlinker ",
395    //"-u "
396 ] };
397
398 static bool IsLinkerOption(String s)
399 {
400    for(i : notLinkerOptions)
401       if(strstr(s, "-Wl,") || !strcmp(s, i))
402          return false;
403    return true;
404 }
405
406 static byte epjSignature[] = { 'E', 'P', 'J', 0x04, 0x01, 0x12, 0x03, 0x12 };
407
408 enum GenMakefilePrintTypes { objects, cObjects, symbols, imports, sources, resources, eCsources };
409
410 define WorkspaceExtension = "ews";
411 define ProjectExtension = "epj";
412
413 define stringInFileIncludedFrom = "In file included from ";
414
415 void ReplaceSpaces(char * output, char * source)
416 {
417    int c, dc;
418    char ch, pch = 0;
419
420    for(c = 0, dc = 0; (ch = source[c]); c++, dc++)
421    {
422       if(ch == ' ') output[dc++] = '\\';
423       if(pch != '$')
424       {
425          if(ch == '(' || ch == ')') output[dc++] = '\\';
426          pch = ch;
427       }
428       else if(ch == ')')
429          pch = 0;
430       output[dc] = ch;
431    }
432    output[dc] = '\0';
433 }
434
435 void ReplaceUnwantedMakeChars(char * output, char * source)
436 {
437    int c, dc;
438    char ch, pch = 0;
439
440    for(c = 0, dc = 0; (ch = source[c]); c++, dc++)
441    {
442       if(pch != '$')
443       {
444          if(ch == '(' || ch == ')') output[dc++] = '\\';
445          pch = ch;
446       }
447       else if(ch == ')')
448          pch = 0;
449       if(ch == ' ')
450          output[dc] = 127;
451       else
452          output[dc] = ch;
453    }
454    output[dc] = '\0';
455 }
456
457 static void OutputNoSpace(File f, char * source)
458 {
459    char * output = new char[strlen(source)+1024];
460    ReplaceSpaces(output, source);
461    f.Puts(output);
462    delete output;
463 }
464
465 enum ListOutputMethod { inPlace, newLine, lineEach };
466
467 int OutputFileList(File f, char * name, Array<String> list, Map<String, int> varStringLenDiffs, char * prefix)
468 {
469    int numOfBreaks = 0;
470    const int breakListLength = 1536;
471    const int breakLineLength = 78; // TODO: turn this into an option.
472
473    int c, len, itemCount = 0;
474    Array<int> breaks { };
475    if(list.count)
476    {
477       int charCount = 0;
478       MapNode<String, int> mn;
479       for(c=0; c<list.count; c++)
480       {
481          len = strlen(list[c]) + 3;
482          if(strstr(list[c], "$(") && varStringLenDiffs && varStringLenDiffs.count)
483          {
484             for(mn = varStringLenDiffs.root.minimum; mn; mn = mn.next)
485             {
486                if(strstr(list[c], mn.key))
487                   len += mn.value;
488             }
489          }
490          if(charCount + len > breakListLength)
491          {
492             breaks.Add(itemCount);
493             itemCount = 0;
494             charCount = len;
495          }
496          itemCount++;
497          charCount += len;
498       }
499       if(itemCount)
500          breaks.Add(itemCount);
501       numOfBreaks = breaks.count;
502    }
503
504    if(numOfBreaks > 1)
505    {
506       f.Printf("%s =%s%s", name, prefix ? " " : "", prefix ? prefix : "");
507       for(c=0; c<numOfBreaks; c++)
508          f.Printf(" $(%s%d)", name, c+1);
509       f.Puts("\n");
510    }
511    else
512       f.Printf("%s =%s%s", name, prefix ? " " : "", prefix ? prefix : "");
513
514    if(numOfBreaks)
515    {
516       int n, offset = 0;
517
518       for(c=0; c<numOfBreaks; c++)
519       {
520          if(numOfBreaks > 1)
521             f.Printf("%s%d =", name, c+1);
522          
523          len = 3;
524          itemCount = breaks[c];
525          for(n=offset; n<offset+itemCount; n++)
526          {
527             if(false) // TODO: turn this into an option.
528             {
529                int itemLen = strlen(list[n]);
530                if(len > 3 && len + itemLen > breakLineLength)
531                {
532                   f.Printf(" \\\n\t%s", list[n]);
533                   len = 3;
534                }
535                else
536                {
537                   len += itemLen;
538                   f.Printf(" %s", list[n]);
539                }
540             }
541             else
542                f.Printf(" \\\n\t%s", list[n]);
543          }
544          offset += itemCount;
545          f.Puts("\n");
546       }
547       list.Free();
548       list.count = 0;
549    }
550    else
551       f.Puts("\n");
552    f.Puts("\n");
553    delete breaks;
554    return numOfBreaks;
555 }
556
557 void OutputCleanActions(File f, char * name, int parts)
558 {
559    if(parts > 1)
560    {
561       int c;
562       for(c=0; c<parts; c++)
563          f.Printf("\t$(call rmq,$(%s%d))\n", name, c+1);
564    }
565    else
566       f.Printf("\t$(call rmq,$(%s))\n", name);
567 }
568
569 void OutputListOption(File f, char * option, Array<String> list, ListOutputMethod method, bool noSpace)
570 {
571    if(list.count)
572    {
573       if(method == newLine)
574          f.Puts(" \\\n\t");
575       for(item : list)
576       {
577          if(method == lineEach)
578             f.Puts(" \\\n\t");
579          f.Printf(" -%s", option);
580          if(noSpace)
581             OutputNoSpace(f, item);
582          else
583             f.Printf("%s", item);
584       }
585    }
586 }
587
588 void StringNoSpaceToDynamicString(DynamicString s, char * path)
589 {
590    char * output = new char[strlen(path)+1024];
591    ReplaceSpaces(output, path);
592    s.concat(output);
593    delete output;
594 }
595
596 static void OutputLibraries(File f, Array<String> libraries)
597 {
598    for(item : libraries)
599    {
600       char ext[MAX_EXTENSION];
601       char temp[MAX_LOCATION];
602       char * s = item;
603       bool usedFunction = false;
604       GetExtension(item, ext);
605       if(!strcmp(ext, "o") || !strcmp(ext, "a"))
606          f.Puts(" ");
607       else
608       {
609          if(!strcmp(ext, "so") || !strcmp(ext, "dylib"))
610          {
611             if(!strncmp(item, "lib", 3))
612                strcpy(temp, item + 3);
613             else
614                strcpy(temp, item);
615             StripExtension(temp);
616             s = temp;
617          } 
618          f.Puts(" \\\n\t$(call _L,");
619          usedFunction = true;
620       }
621       OutputNoSpace(f, s);
622       if(usedFunction)
623          f.Puts(")");
624    }
625 }
626
627 void CamelCase(char * string)
628 {
629    int c, len = strlen(string);
630    for(c=0; c<len && string[c] >= 'A' && string[c] <= 'Z'; c++)
631       string[c] = (char)tolower(string[c]);
632 }
633
634 CompilerConfig GetCompilerConfig()
635 {
636 #ifndef MAKEFILE_GENERATOR
637    CompilerConfig compiler = null;
638    if(ide && ide.workspace)
639       compiler = ideSettings.GetCompilerConfig(ide.workspace.compiler);
640    return compiler;
641 #else
642    incref defaultCompiler;
643    return defaultCompiler;
644 #endif
645 }
646
647 define localTargetType = config && config.options && config.options.targetType ?
648             config.options.targetType : options && options.targetType ?
649             options.targetType : TargetTypes::executable;
650 define localWarnings = config && config.options && config.options.warnings ?
651             config.options.warnings : options && options.warnings ?
652             options.warnings : WarningsOption::unset;
653 define localDebug = config && config.options && config.options.debug ?
654             config.options.debug : options && options.debug ?
655             options.debug : SetBool::unset;
656 define localMemoryGuard = config && config.options && config.options.memoryGuard ?
657             config.options.memoryGuard : options && options.memoryGuard ?
658             options.memoryGuard : SetBool::unset;
659 define localNoLineNumbers = config && config.options && config.options.noLineNumbers ?
660             config.options.noLineNumbers : options && options.noLineNumbers ?
661             options.noLineNumbers : SetBool::unset;
662 define localProfile = config && config.options && config.options.profile ?
663             config.options.profile : options && options.profile ?
664             options.profile : SetBool::unset;
665 define localOptimization = config && config.options && config.options.optimization ?
666             config.options.optimization : options && options.optimization ?
667             options.optimization : OptimizationStrategy::none;
668 define localFastMath = config && config.options && config.options.fastMath ?
669             config.options.fastMath : options && options.fastMath ?
670             options.fastMath : SetBool::unset;
671 define localDefaultNameSpace = config && config.options && config.options.defaultNameSpace ?
672             config.options.defaultNameSpace : options && options.defaultNameSpace ?
673             options.defaultNameSpace : null;
674 define localStrictNameSpaces = config && config.options && config.options.strictNameSpaces ?
675             config.options.strictNameSpaces : options && options.strictNameSpaces ?
676             options.strictNameSpaces : SetBool::unset;
677 // TODO: I would rather have null here, check if it'll be ok, have the property return "" if required
678 define localTargetFileName = config && config.options && config.options.targetFileName ?
679             config.options.targetFileName : options && options.targetFileName ?
680             options.targetFileName : "";
681 define localTargetDirectory = config && config.options && config.options.targetDirectory && config.options.targetDirectory[0] ?
682             config.options.targetDirectory : options && options.targetDirectory && options.targetDirectory[0] ?
683             options.targetDirectory : null;
684 define settingsTargetDirectory = ideSettings && ideSettings.projectDefaultIntermediateObjDir &&
685             ideSettings.projectDefaultIntermediateObjDir[0] ?
686             ideSettings.projectDefaultIntermediateObjDir : defaultObjDirExpression;
687 define localObjectsDirectory = config && config.options && config.options.objectsDirectory && config.options.objectsDirectory[0] ?
688             config.options.objectsDirectory : options && options.objectsDirectory && options.objectsDirectory[0] ?
689             options.objectsDirectory : null;
690 define settingsObjectsDirectory = ideSettings && ideSettings.projectDefaultIntermediateObjDir &&
691             ideSettings.projectDefaultIntermediateObjDir[0] ?
692             ideSettings.projectDefaultIntermediateObjDir : defaultObjDirExpression;
693 define localConsole = config && config.options && config.options.console ?
694             config.options.console : options && options.console ?
695             options.console : SetBool::unset;
696 define localCompress = config && config.options && config.options.compress ?
697             config.options.compress : options && options.compress ?
698             options.compress : SetBool::unset;
699
700 define platformTargetType =
701          configPOs && configPOs.options && configPOs.options.targetType && configPOs.options.targetType != localTargetType ?
702                configPOs.options.targetType :
703          projectPOs && projectPOs.options && projectPOs.options.targetType && projectPOs.options.targetType != localTargetType ?
704                projectPOs.options.targetType : TargetTypes::unset;
705
706
707 char * PlatformToMakefileTargetVariable(Platform platform)
708 {
709    return platform == win32 ? "WINDOWS_TARGET" :
710           platform == tux   ? "LINUX_TARGET"   :
711           platform == apple ? "OSX_TARGET"     :
712                               "ERROR_BAD_TARGET";
713 }
714
715 char * TargetTypeToMakefileVariable(TargetTypes targetType)
716 {
717    return targetType == executable    ? "executable" :
718           targetType == sharedLibrary ? "sharedlib"  :
719           targetType == staticLibrary ? "staticlib"  :
720                                         "unknown";
721 }
722
723 // Move this to ProjectConfig? null vs Common to consider...
724 char * GetConfigName(ProjectConfig config)
725 {
726    return config ? config.name : "Common";
727 }
728
729 public enum SingleFileCompileMode { normal, debugPrecompile, debugCompile, debugGenerateSymbols };
730
731 class Project : struct
732 {
733    class_no_expansion;  // To use Find on the Container<Project> in Workspace::projects
734                         // We might want to tweak this default behavior of regular classes ?
735                         // Expansion/the current default kind of Find matching we want for things like BitmapResource, FontResource (Also regular classes)
736 public:
737    float version;
738    String moduleName;
739
740    property ProjectOptions options { get { return options; } set { options = value; } isset { return options && !options.isEmpty; } }
741    property Array<PlatformOptions> platforms
742    {
743       get { return platforms; }
744       set
745       {
746          if(platforms) { platforms.Free(); delete platforms; }
747          if(value)
748          {
749             List<PlatformOptions> empty { };
750             Iterator<PlatformOptions> it { value };
751             platforms = value;
752             for(p : platforms; !p.options || p.options.isEmpty) empty.Add(p);
753             for(p : empty; it.Find(p)) platforms.Delete(it.pointer);
754             delete empty;
755          }
756       }
757       isset
758       {
759          if(platforms)
760          {
761             for(p : platforms)
762             {
763                if(p.options && !p.options.isEmpty)
764                   return true;
765             }
766          }
767          return false;
768       }
769    }
770    List<ProjectConfig> configurations;
771    LinkList<ProjectNode> files;
772    String resourcesPath;
773    LinkList<ProjectNode> resources;
774
775    property char * description
776    {
777       set { delete description; if(value && value[0]) description = CopyString(value); }
778       get { return description ? description : ""; }
779       isset { return description != null && description[0]; }
780    }
781
782    property char * license
783    {
784       set { delete license; if(value && value[0]) license = CopyString(value); }
785       get { return license ? license : ""; }
786       isset { return license != null && license[0]; }
787    }
788
789    property char * compilerConfigsDir
790    {
791       set { delete compilerConfigsDir; if(value && value[0]) compilerConfigsDir = CopyString(value); }
792       get { return compilerConfigsDir ? compilerConfigsDir : ""; }
793       isset { return compilerConfigsDir && compilerConfigsDir[0]; }
794    }
795
796 private:
797    // topNode.name holds the file name (.epj)
798    ProjectOptions options;
799    Array<PlatformOptions> platforms;
800    ProjectNode topNode { type = project, icon = epjFile, files = LinkList<ProjectNode>{ }, project = this };
801    ProjectNode resNode;
802
803    ProjectConfig config;
804    String filePath;
805    // This is the file name stripped of the epj extension
806    // It should NOT be edited, saved or loaded anywhere
807    String name;
808
809    String description;
810    String license;
811    String compilerConfigsDir;
812 #ifndef MAKEFILE_GENERATOR
813    FileMonitor fileMonitor
814    {
815       this, FileChange { modified = true };
816       bool OnFileNotify(FileChange action, char * param)
817       {
818          fileMonitor.StopMonitoring();
819          if(OnProjectModified(action, param))
820             fileMonitor.StartMonitoring();
821          return true;
822       }
823    };
824
825    bool StartMonitoring()
826    {
827       fileMonitor.fileName = filePath;
828       fileMonitor.StartMonitoring();
829       return true;
830    }
831
832    bool StopMonitoring()
833    {
834       fileMonitor.StopMonitoring();
835       return true;
836    }
837
838    bool OnProjectModified(FileChange fileChange, char * param)
839    {
840       char temp[4096];
841       sprintf(temp, $"The project %s was modified by another application.\n"
842             "Would you like to reload it and lose your changes?", name);
843       if(MessageBox { type = yesNo, master = ide,
844             text = $"Project has been modified", contents = temp }.Modal() == yes)
845       {
846          Project project = LoadProject(filePath, config.name);
847          if(project)
848          {
849             ProjectView projectView = ide.projectView;
850             DataRow prev = topNode.row ? topNode.row.previous : null;
851             FileMonitor fm = fileMonitor;
852
853             if(projectView) projectView.DeleteNode(topNode);
854
855             *this = *project;
856             delete fileMonitor;
857             fileMonitor = fm;
858             topNode.project = this;
859
860             if(projectView)
861             {
862                CompilerConfig compiler = ideSettings.GetCompilerConfig(projectView.workspace.compiler);
863                projectView.AddNode(topNode, null);
864                topNode.row.Move(prev);
865
866                projectView.ShowOutputBuildLog(true);
867                projectView.DisplayCompiler(compiler, false);
868                projectView.ProjectUpdateMakefileForAllConfigs(this);
869                delete compiler;
870             }
871             eSystem_Delete(project);
872          }
873          return true;
874       }
875       return true;
876    }
877
878 #endif
879
880    // This frees contents without freeing the instance
881    // For use from destructor and for file monitor reloading
882    // (To work around JSON loader (LoadProject) always returning a new instance)
883    void Free()
884    {
885       if(platforms) { platforms.Free(); delete platforms; }
886       if(configurations) { configurations.Free(); delete configurations; }
887       if(files) { files.Free(); delete files; }
888       if(resources) { resources.Free(); delete resources; }
889       delete options;
890       delete resourcesPath;
891
892       delete description;
893       delete license;
894       delete compilerConfigsDir;
895       delete moduleName;
896       delete filePath;
897       delete topNode;
898       delete name;
899    }
900
901    ~Project()
902    {
903       /* // THIS IS NOW AUTOMATED WITH A project CHECK IN ProjectNode
904       topNode.configurations = null;
905       topNode.platforms = null;
906       topNode.options = null;
907       */
908       Free();
909    }
910
911    property ProjectConfig config
912    {
913       set
914       {
915          config = value;
916          delete topNode.info;
917          topNode.info = CopyString(GetConfigName(config));
918       }
919    }
920    property char * filePath
921    {
922       set
923       {
924          if(value)
925          {
926             char string[MAX_LOCATION];
927             GetLastDirectory(value, string);
928             delete topNode.name;
929             topNode.name = CopyString(string);
930             StripExtension(string);
931             delete name;
932             name = CopyString(string);
933             StripLastDirectory(value, string);
934             delete topNode.path;
935             topNode.path = CopyString(string);
936             delete filePath;
937             filePath = CopyString(value);
938          }
939       }
940    }
941
942    TargetTypes GetTargetType(ProjectConfig config)
943    {
944       TargetTypes targetType = localTargetType;
945       return targetType;
946    }
947
948    bool GetTargetTypeIsSetByPlatform(ProjectConfig config)
949    {
950       Platform platform;
951       for(platform = (Platform)1; platform < Platform::enumSize; platform++)
952       {
953          PlatformOptions projectPOs, configPOs;
954          MatchProjectAndConfigPlatformOptions(config, platform, &projectPOs, &configPOs);
955          if(platformTargetType)
956             return true;
957       }
958       return false;
959    }
960
961
962    char * GetObjDirExpression(ProjectConfig config)
963    {
964       // TODO: Support platform options
965       char * expression = localObjectsDirectory;
966       if(!expression)
967          expression = settingsObjectsDirectory;
968       return expression;
969    }
970
971    DirExpression GetObjDir(CompilerConfig compiler, ProjectConfig config)
972    {
973       char * expression = GetObjDirExpression(config);
974       DirExpression objDir { type = intermediateObjectsDir };
975       objDir.Evaluate(expression, this, compiler, config);
976       return objDir;
977    }
978
979    char * GetTargetDirExpression(ProjectConfig config)
980    {
981       // TODO: Support platform options
982       char * expression = localTargetDirectory;
983       if(!expression)
984          expression = settingsTargetDirectory;
985       return expression;
986    }
987
988    DirExpression GetTargetDir(CompilerConfig compiler, ProjectConfig config)
989    {
990       char * expression = GetTargetDirExpression(config);
991       DirExpression targetDir { type = DirExpressionType::targetDir /*intermediateObjectsDir*/};
992       targetDir.Evaluate(expression, this, compiler, config);
993       return targetDir;
994    }
995
996    WarningsOption GetWarnings(ProjectConfig config)
997    {
998       WarningsOption warnings = localWarnings;
999       return warnings;
1000    }
1001
1002    bool GetDebug(ProjectConfig config)
1003    {
1004       SetBool debug = localDebug;
1005       return debug == true;
1006    }
1007
1008    bool GetMemoryGuard(ProjectConfig config)
1009    {
1010       SetBool memoryGuard = localMemoryGuard;
1011       return memoryGuard == true;
1012    }
1013
1014    bool GetNoLineNumbers(ProjectConfig config)
1015    {
1016       SetBool noLineNumbers = localNoLineNumbers;
1017       return noLineNumbers == true;
1018    }
1019
1020    bool GetProfile(ProjectConfig config)
1021    {
1022       SetBool profile = localProfile;
1023       return profile == true;
1024    }
1025
1026    OptimizationStrategy GetOptimization(ProjectConfig config)
1027    {
1028       OptimizationStrategy optimization = localOptimization;
1029       return optimization;
1030    }
1031
1032    bool GetFastMath(ProjectConfig config)
1033    {
1034       SetBool fastMath = localFastMath;
1035       return fastMath == true;
1036    }
1037
1038    String GetDefaultNameSpace(ProjectConfig config)
1039    {
1040       String defaultNameSpace = localDefaultNameSpace;
1041       return defaultNameSpace;
1042    }
1043
1044    bool GetStrictNameSpaces(ProjectConfig config)
1045    {
1046       SetBool strictNameSpaces = localStrictNameSpaces;
1047       return strictNameSpaces == true;
1048    }
1049
1050    String GetTargetFileName(ProjectConfig config)
1051    {
1052       String targetFileName = localTargetFileName;
1053       return targetFileName;
1054    }
1055
1056    //String targetDirectory;
1057    //String objectsDirectory;
1058    bool GetConsole(ProjectConfig config)
1059    {
1060       SetBool console = localConsole;
1061       return console == true;
1062    }
1063
1064    bool GetCompress(ProjectConfig config)
1065    {
1066       SetBool compress = localCompress;
1067       return compress == true;
1068    }
1069    //SetBool excludeFromBuild;
1070
1071    bool GetConfigIsInActiveDebugSession(ProjectConfig config)
1072    {
1073 #ifndef MAKEFILE_GENERATOR
1074       return ide.project == this && ide.debugger && ide.debugger.prjConfig == config && ide.debugger.isActive;
1075 #endif
1076    }
1077
1078    bool GetConfigIsInDebugSession(ProjectConfig config)
1079    {
1080 #ifndef MAKEFILE_GENERATOR
1081       return ide.project == this && ide.debugger && ide.debugger.prjConfig == config && ide.debugger.isPrepared;
1082 #endif
1083    }
1084
1085    void SetPath(bool projectsDirs, CompilerConfig compiler, ProjectConfig config)
1086    {
1087 #ifndef MAKEFILE_GENERATOR
1088       ide.SetPath(projectsDirs, compiler, config);
1089 #endif
1090    }
1091
1092 #ifndef MAKEFILE_GENERATOR
1093    bool Save(char * fileName)
1094    {
1095       File f;
1096       /*char output[MAX_LOCATION];
1097        ChangeExtension(fileName, "json", output);
1098       f = FileOpen(output, write);*/
1099       f = FileOpen(fileName, write);
1100       if(f)
1101       {
1102          files = topNode.files;
1103          resources = resNode.files;
1104          resourcesPath = resNode.path;
1105
1106          files.Remove(resNode);
1107          version = 0.2f;
1108
1109          WriteJSONObject(f, class(Project), this, 0);
1110
1111          files.Add(resNode);
1112
1113          files = null;
1114          resources = null;
1115          resourcesPath = null;
1116          delete f;
1117       }
1118       return true;
1119    }
1120 #endif
1121
1122    // This method is only called from Debugger, should be moved to Debugger class?
1123 #ifndef MAKEFILE_GENERATOR
1124    bool GetRelativePath(char * filePath, char * relativePath)
1125    {
1126       ProjectNode node;
1127       char moduleName[MAX_FILENAME];
1128       GetLastDirectory(filePath, moduleName);
1129       // try with workspace dir first?
1130       if((node = topNode.Find(moduleName, false)))
1131       {
1132          strcpy(relativePath, strcmp(node.path, ".") ? node.path : "");
1133          PathCatSlash(relativePath, node.name);
1134          return true;
1135       }
1136       else
1137       {
1138          // Tweak for automatically resolving symbol loader modules
1139          char * sl = strstr(moduleName, ".main.ec");
1140          if(sl && (*sl = 0, !strcmpi(moduleName, name)))
1141          {
1142             char objDir[MAX_LOCATION];
1143             DirExpression objDirExp;
1144             CompilerConfig compiler = ide.debugger.currentCompiler;
1145             ProjectConfig config = ide.debugger.prjConfig;
1146             // This is not perfect, as multiple source files exist for the symbol loader module...
1147             // We try to set it in the debug config object directory.
1148             if(!compiler || !config)
1149             {
1150                // If we're not currently debugging, set a breakpoint in the active compiler/config
1151                compiler = GetCompilerConfig();
1152                config = this.config;
1153                // If the current config is not debuggable, set it in the first debuggable config found
1154                if(config && !config.options.debug)
1155                {
1156                   for(c : configurations; c.options.debug)
1157                   {
1158                      config = c;
1159                      break;
1160                   }
1161                }
1162             }
1163             objDirExp = GetObjDir(compiler, config);
1164             strcpy(objDir, objDirExp.dir);
1165             delete objDirExp;
1166             ChangeCh(objDir, '\\', '/'); // TODO: this is a hack, paths should never include win32 path seperators - fix this in ProjectSettings and ProjectLoad instead
1167             ReplaceSpaces(objDir, objDir);
1168             strcpy(relativePath, objDir);
1169             *sl = '.';
1170             PathCatSlash(relativePath, moduleName);
1171             return true;
1172          }
1173       }
1174       // WARNING: On failure, relative path is uninitialized
1175       return false;   
1176    }
1177 #endif
1178
1179    void CatTargetFileName(char * string, CompilerConfig compiler, ProjectConfig config)
1180    {
1181       TargetTypes targetType = GetTargetType(config);
1182       String targetFileName = GetTargetFileName(config);
1183       if(targetType == staticLibrary)
1184       {
1185          PathCatSlash(string, "lib");
1186          strcat(string, targetFileName);
1187       }
1188       else if(compiler.targetPlatform != win32 && targetType == sharedLibrary)
1189       {
1190          PathCatSlash(string, "lib");
1191          strcat(string, targetFileName);
1192       }
1193       else
1194          PathCatSlash(string, targetFileName);
1195       
1196       switch(targetType)
1197       {
1198          case executable:
1199             if(compiler.targetPlatform == win32)
1200                strcat(string, ".exe");
1201             break;
1202          case sharedLibrary:
1203             if(compiler.targetPlatform == win32)
1204                strcat(string, ".dll");
1205             else if(compiler.targetPlatform == apple)
1206                strcat(string, ".dylib");
1207             else
1208                strcat(string, ".so");
1209             break;
1210          case staticLibrary:
1211             strcat(string, ".a");
1212             break;
1213       }
1214    }
1215
1216    bool GetProjectCompilerConfigsDir(char * cfDir, bool replaceSpaces, bool makeRelative)
1217    {
1218       bool result = false;
1219       char temp[MAX_LOCATION];
1220       strcpy(cfDir, topNode.path);
1221       if(compilerConfigsDir && compilerConfigsDir[0])
1222       {
1223          PathCatSlash(cfDir, compilerConfigsDir);
1224          result = true;
1225       }
1226       if(makeRelative)
1227       {
1228          strcpy(temp, cfDir);
1229          // Using a relative path makes it less likely to run into spaces issues
1230          // Even with escaped spaces, there still seems to be issues including a config file
1231          // in a path containing spaces
1232
1233          MakePathRelative(temp, topNode.path, cfDir);
1234       }
1235
1236       if(cfDir && cfDir[0] && cfDir[strlen(cfDir)-1] != '/')
1237          strcat(cfDir, "/");
1238       if(replaceSpaces)
1239       {
1240          strcpy(temp, cfDir);
1241          ReplaceSpaces(cfDir, temp);
1242       }
1243       return result;
1244    }
1245
1246    bool GetIDECompilerConfigsDir(char * cfDir, bool replaceSpaces, bool makeRelative)
1247    {
1248       char temp[MAX_LOCATION];
1249       bool result = false;
1250       strcpy(cfDir, topNode.path);
1251       if(ideSettings && ideSettings.compilerConfigsDir && ideSettings.compilerConfigsDir[0])
1252       {
1253          PathCatSlash(cfDir, ideSettings.compilerConfigsDir);
1254          result = true;
1255       }
1256       else
1257       {
1258          // Default to <ProjectDir>/.configs if unset
1259          PathCatSlash(cfDir, ".configs");
1260          result = true;
1261       }
1262       if(makeRelative)
1263       {
1264          strcpy(temp, cfDir);
1265          // Using a relative path makes it less likely to run into spaces issues
1266          // Even with escaped spaces, there still seems to be issues including a config file
1267          // in a path containing spaces
1268          if(IsPathInsideOf(cfDir, topNode.path))
1269             MakePathRelative(temp, topNode.path, cfDir);
1270       }
1271       if(cfDir && cfDir[0] && cfDir[strlen(cfDir)-1] != '/')
1272          strcat(cfDir, "/");
1273       if(replaceSpaces)
1274       {
1275          strcpy(temp, cfDir);
1276          ReplaceSpaces(cfDir, temp);
1277       }
1278       return result;
1279    }
1280
1281    void CatMakeFileName(char * string, ProjectConfig config)
1282    {
1283       char projectName[MAX_LOCATION];
1284       strcpy(projectName, name);
1285       sprintf(string, "%s%s%s.Makefile", projectName, config ? "-" : "", config ? config.name : "");
1286    }
1287
1288 #ifndef MAKEFILE_GENERATOR
1289    void MarkChanges(ProjectNode node)
1290    {
1291       for(cfg : topNode.configurations)
1292       {
1293          ProjectConfig c = null;
1294          for(i : node.configurations; !strcmpi(i.name, cfg.name)) { c = i; break; }
1295
1296          if(c && ((c.options && cfg.options && cfg.options.console != c.options.console) ||
1297                (!c.options || !cfg.options)))
1298             cfg.symbolGenModified = true;
1299
1300          cfg.makingModified = true;
1301       }
1302    }
1303
1304    void ModifiedAllConfigs(bool making, bool compiling, bool linking, bool symbolGen)
1305    {
1306       for(cfg : configurations)
1307       {
1308          if(making)
1309             cfg.makingModified = true;
1310          if(compiling)
1311             cfg.compilingModified = true;
1312          if(linking)
1313             cfg.linkingModified = true;
1314          if(symbolGen)
1315             cfg.symbolGenModified = true;
1316       }
1317       if(compiling || linking)
1318       {
1319          ide.projectView.modifiedDocument = true;
1320          ide.workspace.modified = true;
1321       }
1322    }
1323    
1324    void RotateActiveConfig(bool forward)
1325    {
1326       if(configurations.first && configurations.last != configurations.first)
1327       {
1328          Iterator<ProjectConfig> cfg { configurations };
1329          while(forward ? cfg.Next() : cfg.Prev())
1330             if(cfg.data == config)
1331                break;
1332
1333          if(forward)
1334          {
1335             if(!cfg.Next())
1336                cfg.Next();
1337          }
1338          else
1339          {
1340             if(!cfg.Prev())
1341                cfg.Prev();
1342          }
1343
1344          property::config = cfg.data;
1345          ide.UpdateToolBarActiveConfigs(true);
1346          ide.workspace.modified = true;
1347          ide.projectView.Update(null);
1348       }
1349    }
1350
1351    void ProcessPipeOutputRaw(DualPipe f)
1352    {
1353       char line[65536];
1354       while(!f.Eof() && !ide.ShouldStopBuild())
1355       {
1356          bool result = true;
1357          double lastTime = GetTime();
1358          bool wait = true;
1359          while(result)
1360          {
1361             if((result = f.Peek()) && (result = f.GetLine(line, sizeof(line)-1)))
1362             {
1363                ide.outputView.buildBox.Logf("%s\n", line);
1364             }
1365             if(GetTime() - lastTime > 1.0 / PEEK_RESOLUTION) break;
1366          }
1367          //printf("Processing Input...\n");
1368          if(app.ProcessInput(true))
1369             wait = false;
1370          app.UpdateDisplay();
1371          if(wait)
1372          {
1373             //printf("Waiting...\n");
1374             app.Wait();
1375          }
1376          //if(!result) Sleep(1.0 / PEEK_RESOLUTION);
1377       }
1378       if(ide.ShouldStopBuild())
1379       {
1380          ide.outputView.buildBox.Logf($"\nBuild cancelled by user.\n", line);
1381          f.Terminate();
1382       }
1383    }
1384
1385    bool ProcessBuildPipeOutput(DualPipe f, DirExpression objDirExp, bool isARun, List<ProjectNode> onlyNodes,
1386       CompilerConfig compiler, ProjectConfig config)
1387    {
1388       char line[65536];
1389       bool compiling = false, linking = false, precompiling = false;
1390       int compilingEC = 0;
1391       int numErrors = 0, numWarnings = 0;
1392       bool loggedALine = false;
1393       char * configName = config ? config.name : "Common";
1394       int lenMakeCommand = strlen(compiler.makeCommand);
1395       int testLen = 0;
1396
1397       char * gnuToolchainPrefix = compiler.gnuToolchainPrefix ? compiler.gnuToolchainPrefix : "";
1398
1399       DynamicString test { };
1400       DynamicString ecp { };
1401       DynamicString ecc { };
1402       DynamicString ecs { };
1403       DynamicString ear { };
1404       DynamicString prefix { };
1405       DynamicString cpp { };
1406       DynamicString cc { };
1407       DynamicString cxx { };
1408       DynamicString strip { };
1409       DynamicString ar { };
1410
1411       ecp.concatx(compiler.ecpCommand, " ");
1412       ecc.concatx(compiler.eccCommand, " ");
1413       ecs.concatx(compiler.ecsCommand, " ");
1414       ear.concatx(compiler.earCommand, " ");
1415
1416       prefix.concatx(
1417             compiler.ccacheEnabled ? "ccache " : "",
1418             compiler.distccEnabled ? "distcc " : "",
1419             gnuToolchainPrefix);
1420
1421       cpp.concatx((String)prefix, compiler.cppCommand, " ");
1422       cc.concatx((String)prefix, compiler.ccCommand,  " ");
1423       cxx.concatx((String)prefix, compiler.cxxCommand, " ");
1424
1425       strip.concatx(gnuToolchainPrefix, "strip ");
1426       ar.concatx(gnuToolchainPrefix, "ar rcs");
1427
1428       testLen = Max(testLen, ecp.size);
1429       testLen = Max(testLen, ecc.size);
1430       testLen = Max(testLen, ecs.size);
1431       testLen = Max(testLen, ear.size);
1432       testLen = Max(testLen, cpp.size);
1433       testLen = Max(testLen, cc.size);
1434       testLen = Max(testLen, cxx.size);
1435       testLen = Max(testLen, strip.size);
1436       testLen = Max(testLen, ar.size);
1437       testLen++;
1438
1439       while(!f.Eof() && !ide.ShouldStopBuild())
1440       {
1441          bool result = true;
1442          double lastTime = GetTime();
1443          bool wait = true;
1444          while(result)
1445          {
1446             //printf("Peeking and GetLine...\n");
1447             if((result = f.Peek()) && (result = f.GetLine(line, sizeof(line)-1)))
1448             {
1449                char * inFileIncludedFrom = strstr(line, stringInFileIncludedFrom);
1450                test.copyLenSingleBlankReplTrim(line, ' ', true, testLen);
1451                if(strstr(line, compiler.makeCommand) == line && line[lenMakeCommand] == ':')
1452                {
1453                   char * module = strstr(line, "No rule to make target `");
1454                   if(module)
1455                   {
1456                      char * end;
1457                      module = strchr(module, '`') + 1;
1458                      end = strchr(module, '\'');
1459                      if(end)
1460                      {
1461                         *end = '\0';
1462                         ide.outputView.buildBox.Logf($"   %s: No such file or directory\n", module);
1463                         // ide.outputView.buildBox.Logf("error: %s\n   No such file or directory\n", module);
1464                         numErrors++;
1465                      }
1466                   }
1467                   //else
1468                   //{
1469                      //ide.outputView.buildBox.Logf("error: %s\n", line);
1470                      //numErrors++;
1471                   //}
1472                }
1473                else if(strstr(test, ear) == test);
1474                else if(strstr(test, strip) == test);
1475                else if(strstr(test, cc) == test || strstr(test, cxx) == test || strstr(test, ecp) == test || strstr(test, ecc) == test)
1476                {
1477                   char moduleName[MAX_FILENAME];
1478                   byte * tokens[1];
1479                   char * module;
1480                   bool isPrecomp = false;
1481
1482                   if(strstr(test, cc) == test || strstr(test, cxx) == test)
1483                   {
1484                      module = strstr(line, " -c ");
1485                      if(module) module += 4;
1486                   }
1487                   else if(strstr(test, ecc) == test)
1488                   {
1489                      module = strstr(line, " -c ");
1490                      if(module) module += 4;
1491                      //module = line + 3;
1492                      // Don't show GCC warnings about generated C code because it does not compile clean yet...
1493                      compilingEC = 3;//2;
1494                   }
1495                   else if(strstr(test, ecp) == test)
1496                   {
1497                      // module = line + 8;
1498                      module = strstr(line, " -c ");
1499                      if(module) module += 4;
1500                      isPrecomp = true;
1501                      compilingEC = 0;
1502                   }
1503
1504                   loggedALine = true;
1505
1506                   if(module)
1507                   {
1508                      if(!compiling && !isPrecomp)
1509                      {
1510                         ide.outputView.buildBox.Logf($"Compiling...\n");
1511                         compiling = true;
1512                      }
1513                      else if(!precompiling && isPrecomp)
1514                      {
1515                         ide.outputView.buildBox.Logf($"Generating symbols...\n");
1516                         precompiling = true;
1517                      }
1518                      // Changed escapeBackSlashes here to handle paths with spaces
1519                      Tokenize(module, 1, tokens, true); // false);
1520                      GetLastDirectory(module, moduleName);
1521                      ide.outputView.buildBox.Logf("%s\n", moduleName);
1522                   }
1523                   else if((module = strstr(line, " -o ")))
1524                   {
1525                      compiling = false;
1526                      precompiling = false;
1527                      linking = true;
1528                      ide.outputView.buildBox.Logf($"Linking...\n");
1529                   }
1530                   else
1531                   {
1532                      ide.outputView.buildBox.Logf("%s\n", line);
1533                      numErrors++;
1534                   }
1535
1536                   if(compilingEC) compilingEC--;
1537                }
1538                else if(strstr(test, ar) == test)
1539                   ide.outputView.buildBox.Logf($"Building library...\n");
1540                else if(strstr(test, ecs) == test)
1541                   ide.outputView.buildBox.Logf($"Writing symbol loader...\n");
1542                else
1543                {
1544                   if(linking || compiling || precompiling)
1545                   {
1546                      char * colon = strstr(line, ":"); //, * bracket;
1547                      if(colon && (colon[1] == '/' || colon[1] == '\\'))
1548                         colon = strstr(colon + 1, ":");
1549                      if(colon)
1550                      {
1551                         char moduleName[MAX_LOCATION], temp[MAX_LOCATION];
1552                         char * pointer;
1553                         char * error;
1554                         char * start = inFileIncludedFrom ? line + strlen(stringInFileIncludedFrom) : line;
1555                         int len = (int)(colon - start);
1556                         len = Min(len, MAX_LOCATION-1);
1557                         // Don't be mistaken by the drive letter colon
1558                         // Cut module name
1559                         // TODO: need to fix colon - line gives char *
1560                         // warning: incompatible expression colon - line (char *); expected int
1561                         /*
1562                         strncpy(moduleName, line, (int)(colon - line));
1563                         moduleName[colon - line] = '\0';
1564                         */
1565                         strncpy(moduleName, start, len);
1566                         moduleName[len] = '\0';
1567                         // Remove stuff in brackets
1568                         //bracket = strstr(moduleName, "(");
1569                         //if(bracket) *bracket = '\0';
1570
1571                         GetLastDirectory(moduleName, temp);
1572                         if(linking && (!strcmp(temp, "ld") || !strcmp(temp, "ld.exe")))
1573                         {
1574                            numErrors++;
1575                            strcpy(moduleName, $"Linker Error");
1576                         }
1577                         else
1578                         {
1579                            strcpy(temp, topNode.path);
1580                            PathCatSlash(temp, moduleName);
1581                            MakePathRelative(temp, topNode.path, moduleName);
1582                         }
1583                         if(strstr(line, "error:"))
1584                            numErrors ++;
1585                         else
1586                         {
1587                            // Silence warnings for compiled EC
1588                            char * objDir = strstr(moduleName, objDirExp.dir);
1589                         
1590                            if(linking)
1591                            {
1592                               if((pointer = strstr(line, "undefined"))  ||
1593                                    (pointer = strstr(line, "No such file")) ||
1594                                    (pointer = strstr(line, "token")))
1595                               {
1596                                  strncat(moduleName, colon, pointer - colon);
1597                                  strcat(moduleName, "error: ");
1598                                  colon = pointer;
1599                                  numErrors ++;
1600                               }
1601                            }
1602                            else if((pointer = strstr(line, "No such file")))
1603                            {
1604                               strncat(moduleName, colon, pointer - colon);
1605                               strcat(moduleName, "error: ");
1606                               colon = pointer;
1607                               numErrors ++;
1608                            }
1609                            else if(compilingEC == 1 || (objDir && objDir == moduleName))
1610                               continue;
1611                            else if(strstr(line, "warning:"))
1612                            {
1613                               numWarnings++;
1614                            }
1615                         }
1616                         if(this == ide.workspace.projects.firstIterator.data)
1617                            ide.outputView.buildBox.Logf("   %s%s\n", moduleName, colon);
1618                         else
1619                         {
1620                            char fullModuleName[MAX_LOCATION];
1621                            strcpy(fullModuleName, topNode.path);
1622                            PathCat(fullModuleName, moduleName);
1623                            MakePathRelative(fullModuleName, ide.workspace.projects.firstIterator.data.topNode.path, fullModuleName);
1624                            MakeSystemPath(fullModuleName);
1625                            ide.outputView.buildBox.Logf("   %s%s%s\n", inFileIncludedFrom ? stringInFileIncludedFrom : "", fullModuleName, colon);
1626                         }
1627                      }
1628                      else
1629                      {
1630                         ide.outputView.buildBox.Logf("%s\n", line);
1631                         linking = compiling = precompiling = false;
1632                      }
1633                   }
1634                   else
1635                      ide.outputView.buildBox.Logf("%s\n", line);
1636                }
1637                wait = false;
1638             }
1639             //printf("Done getting line\n");
1640             if(GetTime() - lastTime > 1.0 / PEEK_RESOLUTION) break;
1641          }
1642          //printf("Processing Input...\n");
1643          if(app.ProcessInput(true))
1644             wait = false;
1645          app.UpdateDisplay();
1646          if(wait)
1647          {
1648             //printf("Waiting...\n");
1649             app.Wait();
1650          }
1651          //if(!result) Sleep(1.0 / PEEK_RESOLUTION);
1652       }
1653       if(ide.ShouldStopBuild())
1654       {
1655          ide.outputView.buildBox.Logf($"\nBuild cancelled by user.\n", line);
1656          f.Terminate();
1657       }
1658       else if(loggedALine || !isARun)
1659       {
1660          if(f.GetExitCode() && !numErrors)
1661          {
1662             bool result = f.GetLine(line, sizeof(line)-1);
1663             ide.outputView.buildBox.Logf($"Fatal Error: child process terminated unexpectedly\n");
1664          }
1665          else
1666          {
1667             if(!onlyNodes)
1668             {
1669                char targetFileName[MAX_LOCATION];
1670                targetFileName[0] = '\0';
1671                CatTargetFileName(targetFileName, compiler, config);
1672                ide.outputView.buildBox.Logf("\n%s (%s) - ", targetFileName, configName);
1673             }
1674             if(numErrors)
1675                ide.outputView.buildBox.Logf("%d %s, ", numErrors, (numErrors > 1) ? $"errors" : $"error");
1676             else
1677                ide.outputView.buildBox.Logf($"no error, ");
1678    
1679             if(numWarnings)
1680                ide.outputView.buildBox.Logf("%d %s\n", numWarnings, (numWarnings > 1) ? $"warnings" : $"warning");
1681             else
1682                ide.outputView.buildBox.Logf($"no warning\n");
1683          }
1684       }
1685
1686       delete test;
1687       delete ecp;
1688       delete ecc;
1689       delete ecs;
1690       delete ear;
1691       delete prefix;
1692       delete cpp;
1693       delete cc;
1694       delete cxx;
1695       delete strip;
1696       delete ar;
1697
1698       return numErrors == 0;
1699    }
1700
1701    void ProcessCleanPipeOutput(DualPipe f, CompilerConfig compiler, ProjectConfig config)
1702    {
1703       char line[65536];
1704       int lenMakeCommand = strlen(compiler.makeCommand);
1705       while(!f.Eof())
1706       {
1707          bool result = true;
1708          bool wait = true;
1709          double lastTime = GetTime();
1710          while(result)
1711          {
1712             if((result = f.Peek()) && (result = f.GetLine(line, sizeof(line)-1)))
1713             {
1714                if(strstr(line, compiler.makeCommand) == line && line[lenMakeCommand] == ':');
1715                else if(strstr(line, "del") == line);
1716                else if(strstr(line, "rm") == line);
1717                else if(strstr(line, "Could Not Find") == line);
1718                else
1719                {
1720                   ide.outputView.buildBox.Logf(line);
1721                   ide.outputView.buildBox.Logf("\n");
1722                }
1723                wait = false;
1724             }
1725             if(GetTime() - lastTime > 1.0 / PEEK_RESOLUTION) break;
1726          }
1727          if(app.ProcessInput(true))
1728             wait = false;
1729          app.UpdateDisplay();
1730          if(wait)
1731             app.Wait();
1732          //Sleep(1.0 / PEEK_RESOLUTION);
1733       }
1734    }
1735
1736    bool Build(bool isARun, List<ProjectNode> onlyNodes, CompilerConfig compiler, ProjectConfig config, bool justPrint, SingleFileCompileMode mode)
1737    {
1738       bool result = false;
1739       DualPipe f;
1740       char targetFileName[MAX_LOCATION] = "";
1741       DynamicString makeTargets { };
1742       char makeFile[MAX_LOCATION];
1743       char makeFilePath[MAX_LOCATION];
1744       char configName[MAX_LOCATION];
1745       DirExpression objDirExp = GetObjDir(compiler, config);
1746       PathBackup pathBackup { };
1747       bool crossCompiling = (compiler.targetPlatform != GetRuntimePlatform());
1748       char * targetPlatform = crossCompiling ? (char *)compiler.targetPlatform : "";
1749
1750       int numJobs = compiler.numJobs;
1751       char command[MAX_F_STRING];
1752       char * compilerName;
1753
1754       compilerName = CopyString(compiler.name);
1755       CamelCase(compilerName);
1756
1757       strcpy(configName, config ? config.name : "Common");
1758
1759       SetPath(false, compiler, config); //true
1760       CatTargetFileName(targetFileName, compiler, config);
1761
1762       strcpy(makeFilePath, topNode.path);
1763       CatMakeFileName(makeFile, config);
1764       PathCatSlash(makeFilePath, makeFile);
1765
1766       // TODO: TEST ON UNIX IF \" around makeTarget is ok
1767       if(onlyNodes)
1768       {
1769          if(compiler.type.isVC)
1770          {
1771             PrintLn("compiling a single file is not yet supported");
1772          }
1773          else
1774          {
1775             int len;
1776             char pushD[MAX_LOCATION];
1777             char cfDir[MAX_LOCATION];
1778             GetIDECompilerConfigsDir(cfDir, true, true);
1779             GetWorkingDir(pushD, sizeof(pushD));
1780             ChangeWorkingDir(topNode.path);
1781             // Create object dir if it does not exist already
1782             if(!FileExists(objDirExp.dir).isDirectory)
1783             {
1784                sprintf(command, "%s CF_DIR=\"%s\"%s%s COMPILER=%s objdir -C \"%s\"%s -f \"%s\"",
1785                      compiler.makeCommand, cfDir,
1786                      crossCompiling ? " TARGET_PLATFORM=" : "", targetPlatform,
1787                      compilerName, topNode.path, justPrint ? " -n" : "", makeFilePath);
1788                if(justPrint)
1789                   ide.outputView.buildBox.Logf("%s\n", command);
1790                Execute(command);
1791             }
1792
1793             ChangeWorkingDir(pushD);
1794
1795             for(node : onlyNodes)
1796             {
1797                if(node.GetIsExcluded(config))
1798                   ide.outputView.buildBox.Logf($"File %s is excluded from current build configuration.\n", node.name);
1799                else
1800                {
1801                   node.DeleteIntermediateFiles(compiler, config);
1802                   node.GetTargets(config, objDirExp.dir, makeTargets);
1803                }
1804             }
1805          }
1806       }
1807
1808       if(compiler.type.isVC)
1809       {
1810          bool result = false;
1811          char oldwd[MAX_LOCATION];
1812          GetWorkingDir(oldwd, sizeof(oldwd));
1813          ChangeWorkingDir(topNode.path);
1814
1815          // TODO: support justPrint
1816          sprintf(command, "%s /useenv /nologo /logcommands %s.sln %s|Win32", compiler.makeCommand, name, config.name);
1817          if(justPrint)
1818             ide.outputView.buildBox.Logf("%s\n", command);
1819          if((f = DualPipeOpen(PipeOpenMode { output = true, error = true, input = true }, command)))
1820          {
1821             ProcessPipeOutputRaw(f);
1822             delete f;
1823             result = true;
1824          }
1825          ChangeWorkingDir(oldwd);
1826       }
1827       else
1828       {
1829          char cfDir[MAX_LOCATION];
1830          GetIDECompilerConfigsDir(cfDir, true, true);
1831          sprintf(command, "%s %sCF_DIR=\"%s\"%s%s COMPILER=%s -j%d %s%s%s -C \"%s\"%s -f \"%s\"",
1832                compiler.makeCommand,
1833                mode == normal ? "" : (mode == debugPrecompile ? "ECP_DEBUG=y " : mode == debugCompile ? "ECC_DEBUG=y " : mode == debugGenerateSymbols ? "ECS_DEBUG=y " : ""),
1834                cfDir,
1835                crossCompiling ? " TARGET_PLATFORM=" : "", targetPlatform,
1836                compilerName, numJobs,
1837                compiler.ccacheEnabled ? "CCACHE=y " : "",
1838                compiler.distccEnabled ? "DISTCC=y " : "",
1839                (String)makeTargets, topNode.path, (justPrint || mode != normal) ? " -n" : "", makeFilePath);
1840          if(justPrint)
1841             ide.outputView.buildBox.Logf("%s\n", command);
1842          if((f = DualPipeOpen(PipeOpenMode { output = true, error = true, input = true }, command)))
1843          {
1844             bool found = false;
1845             if(justPrint)
1846             {
1847                ProcessPipeOutputRaw(f);
1848                result = true;
1849             }
1850             else if(mode != normal)
1851             {
1852                char line[65536];
1853                while(!f.Eof())
1854                {
1855                   bool result = true;
1856                   while(result)
1857                   {
1858                      if((result = f.Peek()) && (result = f.GetLine(line, sizeof(line)-1)))
1859                      {
1860                         if(!found && strstr(line, "ide ") == line)
1861                         {
1862                            strcpy(command, line);
1863                            found = true;
1864                         }
1865                      }
1866                   }
1867                }
1868             }
1869             else
1870                result = ProcessBuildPipeOutput(f, objDirExp, isARun, onlyNodes, compiler, config);
1871             delete f;
1872             if(found)
1873                Execute(command);
1874          }
1875          else
1876             ide.outputView.buildBox.Logf($"Error executing make (%s) command\n", compiler.makeCommand);
1877       }
1878
1879       delete pathBackup;
1880       delete objDirExp;
1881       delete compilerName;
1882       delete makeTargets;
1883       return result;
1884    }
1885
1886    void Clean(CompilerConfig compiler, ProjectConfig config, bool realclean, bool justPrint)
1887    {
1888       char makeFile[MAX_LOCATION];
1889       char makeFilePath[MAX_LOCATION];
1890       char command[MAX_LOCATION];
1891       char * compilerName;
1892       DualPipe f;
1893       PathBackup pathBackup { };
1894       bool crossCompiling = (compiler.targetPlatform != GetRuntimePlatform());
1895       char * targetPlatform = crossCompiling ? (char *)compiler.targetPlatform : "";
1896
1897       compilerName = CopyString(compiler.name);
1898       CamelCase(compilerName);
1899
1900       SetPath(false, compiler, config);
1901
1902       strcpy(makeFilePath, topNode.path);
1903       CatMakeFileName(makeFile, config);
1904       PathCatSlash(makeFilePath, makeFile);
1905       
1906       if(compiler.type.isVC)
1907       {
1908          bool result = false;
1909          char oldwd[MAX_LOCATION];
1910          GetWorkingDir(oldwd, sizeof(oldwd));
1911          ChangeWorkingDir(topNode.path);
1912          
1913          // TODO: justPrint support
1914          sprintf(command, "%s /useenv /clean /nologo /logcommands %s.sln %s|Win32", compiler.makeCommand, name, config.name);
1915          if(justPrint)
1916             ide.outputView.buildBox.Logf("%s\n", command);
1917          if((f = DualPipeOpen(PipeOpenMode { output = true, error = true, input = true }, command)))
1918          {
1919             ProcessPipeOutputRaw(f);
1920             delete f;
1921             result = true;
1922          }
1923          ChangeWorkingDir(oldwd);
1924          return result;
1925       }
1926       else
1927       {
1928          char cfDir[MAX_LOCATION];
1929          GetIDECompilerConfigsDir(cfDir, true, true);
1930          sprintf(command, "%s CF_DIR=\"%s\"%s%s COMPILER=%s %sclean -C \"%s\"%s -f \"%s\"",
1931                compiler.makeCommand, cfDir,
1932                crossCompiling ? " TARGET_PLATFORM=" : "", targetPlatform,
1933                compilerName, realclean ? "real" : "", topNode.path, justPrint ? " -n": "", makeFilePath);
1934          if(justPrint)
1935             ide.outputView.buildBox.Logf("%s\n", command);
1936          if((f = DualPipeOpen(PipeOpenMode { output = 1, error = 1, input = 2 }, command)))
1937          {
1938             ide.outputView.buildBox.Tell($"Deleting target and object files...");
1939             if(justPrint)
1940                ProcessPipeOutputRaw(f);
1941             else
1942                ProcessCleanPipeOutput(f, compiler, config);
1943             delete f;
1944
1945             ide.outputView.buildBox.Logf($"Target and object files deleted\n");
1946          }
1947       }
1948
1949       delete pathBackup;
1950       delete compilerName;
1951    }
1952
1953    void Run(char * args, CompilerConfig compiler, ProjectConfig config)
1954    {   
1955       String target = new char[maxPathLen];
1956       char oldDirectory[MAX_LOCATION];
1957       char * executableLauncher = compiler.executableLauncher;
1958       DirExpression targetDirExp = GetTargetDir(compiler, config);
1959       PathBackup pathBackup { };
1960
1961       // Build(project, ideMain, true, null, false);
1962
1963    #if defined(__WIN32__)
1964       strcpy(target, topNode.path);
1965    #else
1966       strcpy(target, "");
1967    #endif
1968       PathCatSlash(target, targetDirExp.dir);
1969       CatTargetFileName(target, compiler, config);
1970       sprintf(target, "%s %s", target, args);
1971       GetWorkingDir(oldDirectory, MAX_LOCATION);
1972
1973       if(strlen(ide.workspace.debugDir))
1974       {
1975          char temp[MAX_LOCATION];
1976          strcpy(temp, topNode.path);
1977          PathCatSlash(temp, ide.workspace.debugDir);
1978          ChangeWorkingDir(temp);
1979       }
1980       else
1981          ChangeWorkingDir(topNode.path);
1982       // ChangeWorkingDir(topNode.path);
1983       SetPath(true, compiler, config);
1984       if(executableLauncher)
1985       {
1986          char * prefixedTarget = new char[strlen(executableLauncher) + strlen(target) + 2];
1987          prefixedTarget[0] = '\0';
1988          strcat(prefixedTarget, executableLauncher);
1989          strcat(prefixedTarget, " ");
1990          strcat(prefixedTarget, target);
1991          Execute(prefixedTarget);
1992          delete prefixedTarget;
1993       }
1994       else
1995          Execute(target);
1996
1997       ChangeWorkingDir(oldDirectory);
1998       delete pathBackup;
1999
2000       delete targetDirExp;
2001       delete target;
2002    }
2003
2004    void Compile(List<ProjectNode> nodes, CompilerConfig compiler, ProjectConfig config, bool justPrint, SingleFileCompileMode mode)
2005    {
2006       Build(false, nodes, compiler, config, justPrint, mode);
2007    }
2008 #endif
2009
2010    void GetMakefileTargetFileName(TargetTypes targetType, char * fileName, ProjectConfig config)
2011    {
2012       fileName[0] = '\0';
2013       if(targetType == staticLibrary || targetType == sharedLibrary)
2014          strcat(fileName, "$(LP)");
2015       // !!! ReplaceSpaces must be done after all PathCat calls !!!
2016       // ReplaceSpaces(s, GetTargetFileName(config));
2017       strcat(fileName, GetTargetFileName(config));
2018       switch(targetType)
2019       {
2020          case executable:
2021             strcat(fileName, "$(E)");
2022             break;
2023          case sharedLibrary:
2024             strcat(fileName, "$(SO)");
2025             break;
2026          case staticLibrary:
2027             strcat(fileName, "$(A)");
2028             break;
2029       }
2030    }
2031
2032    bool GenerateCrossPlatformMk()
2033    {
2034       bool result = false;
2035       char path[MAX_LOCATION];
2036
2037       if(!GetProjectCompilerConfigsDir(path, false, false))
2038          GetIDECompilerConfigsDir(path, false, false);
2039
2040       if(!FileExists(path).isDirectory)
2041       {
2042          MakeDir(path);
2043          {
2044             char dirName[MAX_FILENAME];
2045             GetLastDirectory(path, dirName);
2046             if(!strcmp(dirName, ".configs"))
2047                FileSetAttribs(path, FileAttribs { isHidden = true });
2048          }
2049       }
2050       PathCatSlash(path, "crossplatform.mk");
2051
2052       if(FileExists(path))
2053          DeleteFile(path);
2054       {
2055          File include = FileOpen(":crossplatform.mk", read);
2056          if(include)
2057          {
2058             File f = FileOpen(path, write);
2059             if(f)
2060             {
2061                for(; !include.Eof(); )
2062                {
2063                   char buffer[4096];
2064                   int count = include.Read(buffer, 1, 4096);
2065                   f.Write(buffer, 1, count);
2066                }
2067                delete f;
2068
2069                result = true;
2070             }
2071             delete include;
2072          }
2073       }
2074       return result;
2075    }
2076
2077    bool GenerateCompilerCf(CompilerConfig compiler)
2078    {
2079       bool result = false;
2080       char path[MAX_LOCATION];
2081       char * name;
2082       char * compilerName;
2083       bool gccCompiler = compiler.ccCommand && (strstr(compiler.ccCommand, "gcc") != null || strstr(compiler.ccCommand, "g++") != null);
2084       char * gnuToolchainPrefix = compiler.gnuToolchainPrefix ? compiler.gnuToolchainPrefix : "";
2085       Platform platform = compiler.targetPlatform;
2086
2087       compilerName = CopyString(compiler.name);
2088       CamelCase(compilerName);
2089       name = PrintString(platform, "-", compilerName, ".cf");
2090
2091       if(!GetProjectCompilerConfigsDir(path, false, false))
2092          GetIDECompilerConfigsDir(path, false, false);
2093
2094       if(!FileExists(path).isDirectory)
2095       {
2096          MakeDir(path);
2097          {
2098             char dirName[MAX_FILENAME];
2099             GetLastDirectory(path, dirName);
2100             if(!strcmp(dirName, ".configs"))
2101                FileSetAttribs(path, FileAttribs { isHidden = true });
2102          }
2103       }
2104       PathCatSlash(path, name);
2105
2106       if(FileExists(path))
2107          DeleteFile(path);
2108       {
2109          File f = FileOpen(path, write);
2110          if(f)
2111          {
2112             if(compiler.environmentVars && compiler.environmentVars.count)
2113             {
2114                f.Puts("# ENVIRONMENT VARIABLES\n");
2115                f.Puts("\n");
2116                for(e : compiler.environmentVars)
2117                {
2118                   f.Printf("export %s := %s\n", e.name, e.string);
2119                }
2120             }
2121
2122             f.Puts("# TOOLCHAIN\n");
2123             f.Puts("\n");
2124
2125             if(gnuToolchainPrefix && gnuToolchainPrefix[0])
2126             {
2127                f.Printf("GCC_PREFIX := %s\n", gnuToolchainPrefix);
2128                f.Puts("\n");
2129             }
2130             if(compiler.sysroot && compiler.sysroot[0])
2131             {
2132                f.Printf("SYSROOT := %s\n", compiler.sysroot);
2133                // Moved this to crossplatform.mk
2134                //f.Puts("_SYSROOT := $(space)--sysroot=$(SYSROOT)\n");
2135                f.Puts("\n");
2136             }
2137
2138             //f.Printf("SHELL := %s\n", "sh"/*compiler.shellCommand*/); // is this really needed?
2139             f.Printf("CPP := $(CCACHE_COMPILE)$(DISTCC_COMPILE)$(GCC_PREFIX)%s$(_SYSROOT)\n", compiler.cppCommand);
2140             f.Printf("CC := $(CCACHE_COMPILE)$(DISTCC_COMPILE)$(GCC_PREFIX)%s$(_SYSROOT)\n", compiler.ccCommand);
2141             f.Printf("CXX := $(CCACHE_COMPILE)$(DISTCC_COMPILE)$(GCC_PREFIX)%s$(_SYSROOT)\n", compiler.cxxCommand);
2142             f.Printf("ECP := $(if $(ECP_DEBUG),ide -debug-start $(ECERE_SDK_SRC)/compiler/ecp/ecp.epj -@,%s)\n", compiler.ecpCommand);
2143             f.Printf("ECC := $(if $(ECC_DEBUG),ide -debug-start $(ECERE_SDK_SRC)/compiler/ecc/ecc.epj -@,%s)$(if $(CROSS_TARGET), -t $(TARGET_PLATFORM),)\n", compiler.eccCommand);
2144             f.Printf("ECS := $(if $(ECS_DEBUG),ide -debug-start $(ECERE_SDK_SRC)/compiler/ecs/ecs.epj -@,%s)$(if $(CROSS_TARGET), -t $(TARGET_PLATFORM),)\n", compiler.ecsCommand);
2145             f.Printf("EAR := %s\n", compiler.earCommand);
2146
2147             f.Puts("AS := $(GCC_PREFIX)as\n");
2148             f.Puts("LD := $(GCC_PREFIX)ld\n");
2149             f.Puts("AR := $(GCC_PREFIX)ar\n");
2150             f.Puts("STRIP := $(GCC_PREFIX)strip\n");
2151             f.Puts("UPX := upx\n");
2152             f.Puts("\n");
2153
2154             f.Puts("UPXFLAGS = -9\n"); // TOFEAT: Compression Level Option? Other UPX Options?
2155             f.Puts("\n");
2156
2157             f.Puts("EARFLAGS = \n");
2158             f.Puts("\n");
2159
2160             f.Puts("ifndef ARCH\n");
2161             f.Puts("TARGET_ARCH :=$(shell $(CC) -dumpmachine)\n");
2162             f.Puts(" ifdef WINDOWS_HOST\n");
2163             f.Puts("  ifneq ($(filter x86_64%,$(TARGET_ARCH)),)\n");
2164             f.Puts("     TARGET_ARCH := x86_64\n");
2165             f.Puts("  else\n");
2166             f.Puts("     TARGET_ARCH := i386\n");
2167             f.Puts("  endif\n");
2168             f.Puts(" endif\n");
2169             f.Puts("endif\n\n");
2170
2171             f.Puts("# HARD CODED TARGET_PLATFORM-SPECIFIC OPTIONS\n");
2172             f.Printf("LDFLAGS +=$(if $(%s), -Wl$(comma)--no-undefined,)\n", PlatformToMakefileTargetVariable(tux));
2173             f.Puts("\n");
2174
2175             // JF's
2176             f.Printf("LDFLAGS +=$(if $(%s), -framework cocoa -framework OpenGL,)\n", PlatformToMakefileTargetVariable(apple));
2177
2178             if(gccCompiler)
2179             {
2180                f.Puts("\nCFLAGS += -fmessage-length=0\n");
2181             }
2182
2183             if(compiler.includeDirs && compiler.includeDirs.count)
2184             {
2185                f.Puts("\nCFLAGS +=");
2186                OutputListOption(f, gccCompiler ? "isystem " : "I", compiler.includeDirs, lineEach, true);
2187                f.Puts("\n");
2188             }
2189             if(compiler.prepDirectives && compiler.prepDirectives.count)
2190             {
2191                f.Puts("\nCFLAGS +=");
2192                OutputListOption(f, "D", compiler.prepDirectives, inPlace, true);
2193                f.Puts("\n");
2194             }
2195             if(compiler.libraryDirs && compiler.libraryDirs.count)
2196             {
2197                f.Puts("\nLDFLAGS +=");
2198                OutputListOption(f, "L", compiler.libraryDirs, lineEach, true);
2199                // We would need a bool option to know whether we want to add to rpath as well...
2200                // OutputListOption(f, "Wl,-rpath ", compiler.libraryDirs, lineEach, true);
2201                f.Puts("\n");
2202             }
2203             if(compiler.excludeLibs && compiler.excludeLibs.count)
2204             {
2205                f.Puts("\nEXCLUDED_LIBS =");
2206                for(l : compiler.excludeLibs)
2207                {
2208                   f.Puts(" ");
2209                   f.Puts(l);
2210                }
2211             }
2212             if(compiler.linkerFlags && compiler.linkerFlags.count)
2213             {
2214                f.Puts("\nLDFLAGS +=");
2215                OutputListOption(f, "Wl,", compiler.linkerFlags, inPlace, true);
2216                f.Puts("\n");
2217             }
2218             f.Puts("\n");
2219             f.Puts("\nOFLAGS += $(LDFLAGS)");
2220             f.Puts("\n");
2221             f.Puts("ifdef ARCH_FLAGS\n");
2222             f.Puts("CFLAGS += $(ARCH_FLAGS)\n");
2223             f.Puts("OFLAGS += $(ARCH_FLAGS)\n");
2224             f.Puts("endif\n");
2225
2226             delete f;
2227
2228             result = true;
2229          }
2230       }
2231       delete name;
2232       delete compilerName;
2233       return result;
2234    }
2235
2236    bool GenerateMakefile(char * altMakefilePath, bool noResources, char * includemkPath, ProjectConfig config)
2237    {
2238       bool result = false;
2239       char filePath[MAX_LOCATION];
2240       char makeFile[MAX_LOCATION];
2241       // PathBackup pathBackup { };
2242       // char oldDirectory[MAX_LOCATION];
2243       File f = null;
2244
2245       if(!altMakefilePath)
2246       {
2247          strcpy(filePath, topNode.path);
2248          CatMakeFileName(makeFile, config);
2249          PathCatSlash(filePath, makeFile);
2250       }
2251
2252       f = FileOpen(altMakefilePath ? altMakefilePath : filePath, write);
2253
2254       /*SetPath(false, compiler, config);
2255       GetWorkingDir(oldDirectory, MAX_LOCATION);
2256       ChangeWorkingDir(topNode.path);*/
2257
2258       if(f)
2259       {
2260          bool test;
2261          int ifCount;
2262          Platform platform;
2263          char targetDir[MAX_LOCATION];
2264          char objDirExpNoSpaces[MAX_LOCATION];
2265          char objDirNoSpaces[MAX_LOCATION];
2266          char resDirNoSpaces[MAX_LOCATION];
2267          char targetDirExpNoSpaces[MAX_LOCATION];
2268          char fixedModuleName[MAX_FILENAME];
2269          char fixedConfigName[MAX_FILENAME];
2270          int c, len;
2271          // Non-zero if we're building eC code
2272          // We'll have to be careful with this when merging configs where eC files can be excluded in some configs and included in others
2273          int numCObjects = 0;
2274          int numObjects = 0;
2275          bool containsCXX = false; // True if the project contains a C++ file
2276          bool sameObjTargetDirs;
2277          String objDirExp = GetObjDirExpression(config);
2278          TargetTypes targetType = GetTargetType(config);
2279
2280          char cfDir[MAX_LOCATION];
2281          int objectsParts = 0, eCsourcesParts = 0;
2282          Array<String> listItems { };
2283          Map<String, int> varStringLenDiffs { };
2284          Map<String, NameCollisionInfo> namesInfo { };
2285          bool forceBitDepth = false;
2286
2287          Map<String, int> cflagsVariations { };
2288          Map<intptr, int> nodeCFlagsMapping { };
2289
2290          Map<String, int> ecflagsVariations { };
2291          Map<intptr, int> nodeECFlagsMapping { };
2292
2293          ReplaceSpaces(objDirNoSpaces, objDirExp);
2294          strcpy(targetDir, GetTargetDirExpression(config));
2295          ReplaceSpaces(targetDirExpNoSpaces, targetDir);
2296
2297          strcpy(objDirExpNoSpaces, GetObjDirExpression(config));
2298          ChangeCh(objDirExpNoSpaces, '\\', '/'); // TODO: this is a hack, paths should never include win32 path seperators - fix this in ProjectSettings and ProjectLoad instead
2299          ReplaceSpaces(objDirExpNoSpaces, objDirExpNoSpaces);
2300          ReplaceSpaces(resDirNoSpaces, resNode.path ? resNode.path : "");
2301          ReplaceSpaces(fixedModuleName, moduleName);
2302          ReplaceSpaces(fixedConfigName, GetConfigName(config));
2303          CamelCase(fixedConfigName);
2304
2305          sameObjTargetDirs = !fstrcmp(objDirExpNoSpaces, targetDirExpNoSpaces);
2306
2307          f.Printf(".PHONY: all objdir%s cleantarget clean realclean distclean\n\n", sameObjTargetDirs ? "" : " targetdir");
2308
2309          f.Puts("# CORE VARIABLES\n\n");
2310
2311          f.Printf("MODULE := %s\n", fixedModuleName);
2312          //f.Printf("VERSION = %s\n", version);
2313          f.Printf("CONFIG := %s\n", fixedConfigName);
2314          f.Puts("ifndef COMPILER\n" "COMPILER := default\n" "endif\n");
2315          f.Puts("\n");
2316
2317          test = GetTargetTypeIsSetByPlatform(config);
2318          if(test)
2319          {
2320             ifCount = 0;
2321             for(platform = (Platform)1; platform < Platform::enumSize; platform++)
2322             {
2323                TargetTypes targetType;
2324                PlatformOptions projectPOs, configPOs;
2325                MatchProjectAndConfigPlatformOptions(config, platform, &projectPOs, &configPOs);
2326                targetType = platformTargetType;
2327                if(targetType)
2328                {
2329                   if(ifCount)
2330                      f.Puts("else\n");
2331                   ifCount++;
2332                   f.Printf("ifdef %s\n", PlatformToMakefileTargetVariable(platform));
2333                   f.Printf("TARGET_TYPE = %s\n", TargetTypeToMakefileVariable(targetType));
2334                }
2335             }
2336             f.Puts("else\n");
2337          }
2338          f.Printf("TARGET_TYPE = %s\n", TargetTypeToMakefileVariable(targetType));
2339          if(test)
2340          {
2341             if(ifCount)
2342             {
2343                for(c = 0; c < ifCount; c++)
2344                   f.Puts("endif\n");
2345             }
2346          }
2347          f.Puts("\n");
2348
2349          f.Puts("# FLAGS\n\n");
2350
2351          f.Puts("ECFLAGS =\n");
2352          f.Puts("ifndef DEBIAN_PACKAGE\n" "CFLAGS =\n" "LDFLAGS =\n" "endif\n");
2353          f.Puts("PRJ_CFLAGS =\n");
2354          f.Puts("CECFLAGS =\n");
2355          f.Puts("OFLAGS =\n");
2356          f.Puts("LIBS =\n");
2357          f.Puts("\n");
2358
2359          f.Puts("ifdef DEBUG\n" "NOSTRIP := y\n" "endif\n");
2360          f.Puts("\n");
2361
2362          // Important: We cannot use this ifdef anymore, EXECUTABLE_TARGET is not yet defined. It's embedded in the crossplatform.mk EXECUTABLE
2363          //f.Puts("ifdef EXECUTABLE_TARGET\n");
2364          f.Printf("CONSOLE = %s\n", GetConsole(config) ? "-mconsole" : "-mwindows");
2365          //f.Puts("endif\n");
2366          f.Puts("\n");
2367
2368          f.Puts("# INCLUDES\n\n");
2369
2370          if(compilerConfigsDir && compilerConfigsDir[0])
2371          {
2372             strcpy(cfDir, compilerConfigsDir);
2373             if(cfDir && cfDir[0] && cfDir[strlen(cfDir)-1] != '/')
2374                strcat(cfDir, "/");
2375          }
2376          else
2377          {
2378             GetIDECompilerConfigsDir(cfDir, true, true);
2379             // Use CF_DIR environment variable for absolute paths only
2380             if(cfDir[0] == '/' || (cfDir[0] && cfDir[1] == ':'))
2381                strcpy(cfDir, "$(CF_DIR)");
2382          }
2383
2384          f.Printf("_CF_DIR = %s\n", cfDir);
2385          f.Puts("\n");
2386
2387          f.Printf("include %s\n", includemkPath ? includemkPath : "$(_CF_DIR)crossplatform.mk");
2388          f.Puts("include $(_CF_DIR)$(TARGET_PLATFORM)-$(COMPILER).cf\n");
2389          f.Puts("\n");
2390
2391          f.Puts("# POST-INCLUDES VARIABLES\n\n");
2392
2393          f.Printf("OBJ = %s%s\n", objDirExpNoSpaces, objDirExpNoSpaces[0] ? "/" : "");
2394          f.Puts("\n");
2395
2396          f.Printf("RES = %s%s\n", resDirNoSpaces, resDirNoSpaces[0] ? "/" : "");
2397          f.Puts("\n");
2398
2399          // test = GetTargetTypeIsSetByPlatform(config);
2400          {
2401             char target[MAX_LOCATION];
2402             char targetNoSpaces[MAX_LOCATION];
2403             if(test)
2404             {
2405                TargetTypes type;
2406                ifCount = 0;
2407                for(type = (TargetTypes)1; type < TargetTypes::enumSize; type++)
2408                {
2409                   if(type != targetType)
2410                   {
2411                      if(ifCount)
2412                         f.Puts("else\n");
2413                      ifCount++;
2414                      f.Printf("ifeq \"$(TARGET_TYPE)\" \"%s\"\n", TargetTypeToMakefileVariable(type));
2415
2416                      GetMakefileTargetFileName(type, target, config);
2417                      strcpy(targetNoSpaces, targetDir);
2418                      PathCatSlash(targetNoSpaces, target);
2419                      ReplaceSpaces(targetNoSpaces, targetNoSpaces);
2420                      f.Printf("TARGET = %s\n", targetNoSpaces);
2421                   }
2422                }
2423                f.Puts("else\n");
2424             }
2425             GetMakefileTargetFileName(targetType, target, config);
2426             strcpy(targetNoSpaces, targetDir);
2427             PathCatSlash(targetNoSpaces, target);
2428             ReplaceSpaces(targetNoSpaces, targetNoSpaces);
2429             f.Printf("TARGET = %s\n", targetNoSpaces);
2430
2431             if(test)
2432             {
2433                if(ifCount)
2434                {
2435                   for(c = 0; c < ifCount; c++)
2436                      f.Puts("endif\n");
2437                }
2438             }
2439          }
2440          f.Puts("\n");
2441
2442          // Use something fixed here, to not cause Makefile differences across compilers...
2443          varStringLenDiffs["$(OBJ)"] = 30; // strlen("obj/memoryGuard.android.gcc-4.6.2") - 6;
2444          // varStringLenDiffs["$(OBJ)"] = strlen(objDirNoSpaces) - 6;
2445
2446          topNode.GenMakefileGetNameCollisionInfo(namesInfo, config);
2447
2448          {
2449             int c;
2450             char * map[5][2] = { { "COBJECTS", "C" }, { "SYMBOLS", "S" }, { "IMPORTS", "I" }, { "ECOBJECTS", "O" }, { "BOWLS", "B" } };
2451
2452             numCObjects = topNode.GenMakefilePrintNode(f, this, eCsources, namesInfo, listItems, config, null);
2453             if(numCObjects)
2454             {
2455                eCsourcesParts = OutputFileList(f, "_ECSOURCES", listItems, varStringLenDiffs, null);
2456
2457                f.Puts("ECSOURCES = $(call shwspace,$(_ECSOURCES))\n");
2458                if(eCsourcesParts > 1)
2459                {
2460                   for(c = 1; c <= eCsourcesParts; c++)
2461                      f.Printf("ECSOURCES%d = $(call shwspace,$(_ECSOURCES%d))\n", c, c);
2462                }
2463                f.Puts("\n");
2464
2465                for(c = 0; c < 5; c++)
2466                {
2467                   if(eCsourcesParts > 1)
2468                   {
2469                      int n;
2470                      f.Printf("%s =", map[c][0]);
2471                      for(n = 1; n <= eCsourcesParts; n++)
2472                         f.Printf(" $(%s%d)", map[c][0], n);
2473                      f.Puts("\n");
2474                      for(n = 1; n <= eCsourcesParts; n++)
2475                         f.Printf("%s%d = $(call shwspace,$(addprefix $(OBJ),$(patsubst %%.ec,%%$(%s),$(notdir $(_ECSOURCES%d)))))\n", map[c][0], n, map[c][1], n);
2476                   }
2477                   else if(eCsourcesParts == 1)
2478                      f.Printf("%s = $(call shwspace,$(addprefix $(OBJ),$(patsubst %%.ec,%%$(%s),$(notdir $(_ECSOURCES)))))\n", map[c][0], map[c][1]);
2479                   f.Puts("\n");
2480                }
2481             }
2482          }
2483
2484          numObjects = topNode.GenMakefilePrintNode(f, this, objects, namesInfo, listItems, config, &containsCXX);
2485          if(numObjects)
2486             objectsParts = OutputFileList(f, "_OBJECTS", listItems, varStringLenDiffs, null);
2487          f.Printf("OBJECTS =%s%s%s\n", numObjects ? " $(_OBJECTS)" : "", numCObjects ? " $(ECOBJECTS)" : "", numCObjects ? " $(OBJ)$(MODULE).main$(O)" : "");
2488          f.Puts("\n");
2489
2490          topNode.GenMakefilePrintNode(f, this, sources, null, listItems, config, null);
2491          OutputFileList(f, "SOURCES", listItems, varStringLenDiffs, numCObjects ? "$(ECSOURCES)" : null);
2492
2493          if(!noResources)
2494             resNode.GenMakefilePrintNode(f, this, resources, null, listItems, config, null);
2495          OutputFileList(f, "RESOURCES", listItems, varStringLenDiffs, null);
2496
2497          f.Puts("LIBS += $(SHAREDLIB) $(EXECUTABLE) $(LINKOPT)\n");
2498          f.Puts("\n");
2499          if((config && config.options && config.options.libraries) ||
2500                (options && options.libraries))
2501          {
2502             f.Puts("ifndef STATIC_LIBRARY_TARGET\n");
2503             f.Puts("LIBS +=");
2504             if(config && config.options && config.options.libraries)
2505                OutputLibraries(f, config.options.libraries);
2506             else if(options && options.libraries)
2507                OutputLibraries(f, options.libraries);
2508             f.Puts("\n");
2509             f.Puts("endif\n");
2510             f.Puts("\n");
2511          }
2512
2513          topNode.GenMakeCollectAssignNodeFlags(config, numCObjects,
2514                cflagsVariations, nodeCFlagsMapping,
2515                ecflagsVariations, nodeECFlagsMapping, null);
2516
2517          GenMakePrintCustomFlags(f, "PRJ_CFLAGS", false, cflagsVariations);
2518          GenMakePrintCustomFlags(f, "ECFLAGS", true, ecflagsVariations);
2519
2520          if(platforms || (config && config.platforms))
2521          {
2522             ifCount = 0;
2523             //for(platform = firstPlatform; platform <= lastPlatform; platform++)
2524             //for(platform = win32; platform <= apple; platform++)
2525
2526             f.Puts("# PLATFORM-SPECIFIC OPTIONS\n\n");
2527             for(platform = (Platform)1; platform < Platform::enumSize; platform++)
2528             {
2529                PlatformOptions projectPlatformOptions, configPlatformOptions;
2530                MatchProjectAndConfigPlatformOptions(config, platform, &projectPlatformOptions, &configPlatformOptions);
2531
2532                if(projectPlatformOptions || configPlatformOptions)
2533                {
2534                   if(ifCount)
2535                      f.Puts("else\n");
2536                   ifCount++;
2537                   f.Printf("ifdef %s\n", PlatformToMakefileTargetVariable(platform));
2538                   f.Puts("\n");
2539
2540                   if((projectPlatformOptions && projectPlatformOptions.options.linkerOptions && projectPlatformOptions.options.linkerOptions.count) ||
2541                      (configPlatformOptions && configPlatformOptions.options.linkerOptions && configPlatformOptions.options.linkerOptions.count))
2542                   {
2543                      f.Puts("OFLAGS +=");
2544                      if(projectPlatformOptions && projectPlatformOptions.options.linkerOptions && projectPlatformOptions.options.linkerOptions.count)
2545                      {
2546                         bool needWl = false;
2547                         f.Puts(" \\\n\t ");
2548                         for(s : projectPlatformOptions.options.linkerOptions)
2549                         {
2550                            if(!IsLinkerOption(s))
2551                               f.Printf(" %s", s);
2552                            else
2553                               needWl = true;
2554                         }
2555                         if(needWl)
2556                         {
2557                            f.Puts(" -Wl");
2558                            for(s : projectPlatformOptions.options.linkerOptions)
2559                               if(IsLinkerOption(s))
2560                                  f.Printf(",%s", s);
2561                         }
2562                      }
2563                      if(configPlatformOptions && configPlatformOptions.options.linkerOptions && configPlatformOptions.options.linkerOptions.count)
2564                      {
2565                         bool needWl = false;
2566                         f.Puts(" \\\n\t ");
2567                         for(s : configPlatformOptions.options.linkerOptions)
2568                         {
2569                            if(IsLinkerOption(s))
2570                               f.Printf(" %s", s);
2571                            else
2572                               needWl = true;
2573                         }
2574                         if(needWl)
2575                         {
2576                            f.Puts(" -Wl");
2577                            for(s : configPlatformOptions.options.linkerOptions)
2578                               if(!IsLinkerOption(s))
2579                                  f.Printf(",%s", s);
2580                         }
2581                      }
2582                      f.Puts("\n");
2583                      f.Puts("\n");
2584                   }
2585
2586                   if((projectPlatformOptions && projectPlatformOptions.options.libraryDirs && projectPlatformOptions.options.libraryDirs.count) ||
2587                         (configPlatformOptions && configPlatformOptions.options.libraryDirs && configPlatformOptions.options.libraryDirs.count) ||
2588                         (projectPlatformOptions && projectPlatformOptions.options.libraries && projectPlatformOptions.options.libraries.count) ||
2589                         (configPlatformOptions && configPlatformOptions.options.libraries && configPlatformOptions.options.libraries.count))
2590                   {
2591                      f.Puts("ifndef STATIC_LIBRARY_TARGET\n");
2592                      if((projectPlatformOptions && projectPlatformOptions.options.libraryDirs && projectPlatformOptions.options.libraryDirs.count) ||
2593                         (configPlatformOptions && configPlatformOptions.options.libraryDirs && configPlatformOptions.options.libraryDirs.count))
2594                      {
2595                         f.Puts("OFLAGS +=");
2596                         if(configPlatformOptions && configPlatformOptions.options.libraryDirs)
2597                            OutputListOption(f, "L", configPlatformOptions.options.libraryDirs, lineEach, true);
2598                         if(projectPlatformOptions && projectPlatformOptions.options.libraryDirs)
2599                            OutputListOption(f, "L", projectPlatformOptions.options.libraryDirs, lineEach, true);
2600                         f.Puts("\n");
2601                      }
2602
2603                      if((configPlatformOptions && configPlatformOptions.options.libraries))
2604                      {
2605                         if(configPlatformOptions.options.libraries.count)
2606                         {
2607                            f.Puts("LIBS +=");
2608                            OutputLibraries(f, configPlatformOptions.options.libraries);
2609                            f.Puts("\n");
2610                         }
2611                      }
2612                      else if(projectPlatformOptions && projectPlatformOptions.options.libraries)
2613                      {
2614                         if(projectPlatformOptions.options.libraries.count)
2615                         {
2616                            f.Puts("LIBS +=");
2617                            OutputLibraries(f, projectPlatformOptions.options.libraries);
2618                            f.Puts("\n");
2619                         }
2620                      }
2621                      f.Puts("endif\n");
2622                      f.Puts("\n");
2623                   }
2624                }
2625             }
2626             if(ifCount)
2627             {
2628                for(c = 0; c < ifCount; c++)
2629                   f.Puts("endif\n");
2630             }
2631             f.Puts("\n");
2632          }
2633
2634          if((config && config.options && config.options.linkerOptions && config.options.linkerOptions.count) ||
2635                (options && options.linkerOptions && options.linkerOptions.count))
2636          {
2637             f.Puts("OFLAGS +=");
2638             f.Puts(" \\\n\t");
2639
2640             if(config && config.options && config.options.linkerOptions && config.options.linkerOptions.count)
2641             {
2642                bool needWl = false;
2643                for(s : config.options.linkerOptions)
2644                {
2645                   if(!IsLinkerOption(s))
2646                      f.Printf(" %s", s);
2647                   else
2648                      needWl = true;
2649                }
2650                if(needWl)
2651                {
2652                   f.Puts(" -Wl");
2653                   for(s : config.options.linkerOptions)
2654                      if(IsLinkerOption(s))
2655                         f.Printf(",%s", s);
2656                }
2657             }
2658             if(options && options.linkerOptions && options.linkerOptions.count)
2659             {
2660                bool needWl = false;
2661                for(s : options.linkerOptions)
2662                {
2663                   if(!IsLinkerOption(s))
2664                      f.Printf(" %s", s);
2665                   else
2666                      needWl = true;
2667                }
2668                if(needWl)
2669                {
2670                   f.Puts(" -Wl");
2671                   for(s : options.linkerOptions)
2672                      if(IsLinkerOption(s))
2673                         f.Printf(",%s", s);
2674                }
2675             }
2676          }
2677          f.Puts("\n");
2678          f.Puts("\n");
2679
2680          f.Puts("CECFLAGS += -cpp $(_CPP)");
2681          f.Puts("\n");
2682          f.Puts("\n");
2683
2684          if(GetProfile(config))
2685             f.Puts("OFLAGS += -pg\n\n");
2686
2687          if((config && config.options && config.options.libraryDirs) || (options && options.libraryDirs))
2688          {
2689             f.Puts("ifndef STATIC_LIBRARY_TARGET\n");
2690             f.Puts("OFLAGS +=");
2691             if(config && config.options && config.options.libraryDirs)
2692                OutputListOption(f, "L", config.options.libraryDirs, lineEach, true);
2693             if(options && options.libraryDirs)
2694                OutputListOption(f, "L", options.libraryDirs, lineEach, true);
2695             f.Puts("\n");
2696             f.Puts("endif\n");
2697             f.Puts("\n");
2698          }
2699
2700          f.Puts("# TARGETS\n");
2701          f.Puts("\n");
2702
2703          f.Printf("all: objdir%s $(TARGET)\n", sameObjTargetDirs ? "" : " targetdir");
2704          f.Puts("\n");
2705
2706          f.Puts("objdir:\n");
2707             f.Puts("\t$(if $(wildcard $(OBJ)),,$(call mkdirq,$(OBJ)))\n");
2708          //f.Puts("# PRE-BUILD COMMANDS\n");
2709          if(options && options.prebuildCommands)
2710          {
2711             for(s : options.prebuildCommands)
2712                if(s && s[0]) f.Printf("\t%s\n", s);
2713          }
2714          if(config && config.options && config.options.prebuildCommands)
2715          {
2716             for(s : config.options.prebuildCommands)
2717                if(s && s[0]) f.Printf("\t%s\n", s);
2718          }
2719          if(platforms || (config && config.platforms))
2720          {
2721             ifCount = 0;
2722             //f.Puts("# TARGET_PLATFORM-SPECIFIC PRE-BUILD COMMANDS\n");
2723             for(platform = (Platform)1; platform < Platform::enumSize; platform++)
2724             {
2725                PlatformOptions projectPOs, configPOs;
2726                MatchProjectAndConfigPlatformOptions(config, platform, &projectPOs, &configPOs);
2727
2728                if((projectPOs && projectPOs.options.prebuildCommands && projectPOs.options.prebuildCommands.count) ||
2729                      (configPOs && configPOs.options.prebuildCommands && configPOs.options.prebuildCommands.count))
2730                {
2731                   if(ifCount)
2732                      f.Puts("else\n");
2733                   ifCount++;
2734                   f.Printf("ifdef %s\n", PlatformToMakefileTargetVariable(platform));
2735
2736                   if(projectPOs && projectPOs.options.prebuildCommands && projectPOs.options.prebuildCommands.count)
2737                   {
2738                      for(s : projectPOs.options.prebuildCommands)
2739                         if(s && s[0]) f.Printf("\t%s\n", s);
2740                   }
2741                   if(configPOs && configPOs.options.prebuildCommands && configPOs.options.prebuildCommands.count)
2742                   {
2743                      for(s : configPOs.options.prebuildCommands)
2744                         if(s && s[0]) f.Printf("\t%s\n", s);
2745                   }
2746                }
2747             }
2748             if(ifCount)
2749             {
2750                int c;
2751                for(c = 0; c < ifCount; c++)
2752                   f.Puts("endif\n");
2753             }
2754          }
2755          f.Puts("\n");
2756
2757          if(!sameObjTargetDirs)
2758          {
2759             f.Puts("targetdir:\n");
2760                f.Printf("\t$(if $(wildcard %s),,$(call mkdirq,%s))\n", targetDirExpNoSpaces, targetDirExpNoSpaces);
2761             f.Puts("\n");
2762          }
2763
2764          if(numCObjects)
2765          {
2766             // Main Module (Linking) for ECERE C modules
2767             f.Puts("$(OBJ)$(MODULE).main.ec: $(SYMBOLS) $(COBJECTS)\n");
2768             // use of objDirExpNoSpaces used instead of $(OBJ) to prevent problematic joining of arguments in ecs
2769             f.Printf("\t$(ECS)%s $(ARCH_FLAGS) $(ECSLIBOPT) $(SYMBOLS) $(IMPORTS) -symbols %s -o $(OBJ)$(MODULE).main.ec\n", 
2770                GetConsole(config) ? " -console" : "", objDirExpNoSpaces);
2771             f.Puts("\n");
2772             // Main Module (Linking) for ECERE C modules
2773             f.Puts("$(OBJ)$(MODULE).main.c: $(OBJ)$(MODULE).main.ec\n");
2774             f.Puts("\t$(ECP) $(CFLAGS) $(CECFLAGS) $(ECFLAGS) $(PRJ_CFLAGS)"
2775                   " -c $(OBJ)$(MODULE).main.ec -o $(OBJ)$(MODULE).main.sym -symbols $(OBJ)\n");
2776             f.Puts("\t$(ECC) $(CFLAGS) $(CECFLAGS) $(ECFLAGS) $(PRJ_CFLAGS) $(FVISIBILITY)"
2777                   " -c $(OBJ)$(MODULE).main.ec -o $(OBJ)$(MODULE).main.c -symbols $(OBJ)\n");
2778             f.Puts("\n");
2779          }
2780
2781          // *** Target ***
2782
2783          // This would not rebuild the target on updated objects
2784          // f.Printf("$(TARGET): $(SOURCES) $(RESOURCES) | objdir $(SYMBOLS) $(OBJECTS)%s\n", sameObjTargetDirs ? "" : " targetdir");
2785
2786          // This should fix it for good!
2787          f.Puts("$(SYMBOLS): | objdir\n");
2788          f.Puts("$(OBJECTS): | objdir\n");
2789
2790          // This alone was breaking the tarball, object directory does not get created first (order-only rules happen last it seems!)
2791          f.Printf("$(TARGET): $(SOURCES) $(RESOURCES) $(SYMBOLS) $(OBJECTS) | objdir%s\n", sameObjTargetDirs ? "" : " targetdir");
2792
2793          f.Puts("ifndef STATIC_LIBRARY_TARGET\n");
2794          f.Printf("\t$(%s) $(OFLAGS) $(OBJECTS) $(LIBS) %s-o $(TARGET) $(INSTALLNAME)\n", containsCXX ? "CXX" : "CC", containsCXX ? "-lstdc++ " : "");
2795          if(!GetDebug(config))
2796          {
2797             f.Puts("ifndef NOSTRIP\n");
2798             f.Puts("\t$(STRIP) $(STRIPOPT) $(TARGET)\n");
2799             f.Puts("endif\n");
2800
2801             if(GetCompress(config))
2802             {
2803                f.Printf("ifndef %s\n", PlatformToMakefileTargetVariable(win32));
2804                f.Puts("ifdef EXECUTABLE_TARGET\n");
2805                   f.Puts("\t$(UPX) $(UPXFLAGS) $(TARGET)\n");
2806                f.Puts("endif\n");
2807                f.Puts("else\n");
2808                   f.Puts("\t$(UPX) $(UPXFLAGS) $(TARGET)\n");
2809                f.Puts("endif\n");
2810             }
2811          }
2812          if(resNode.files && resNode.files.count && !noResources)
2813             resNode.GenMakefileAddResources(f, resNode.path, config);
2814          f.Puts("else\n");
2815          f.Puts("\t$(AR) rcs $(TARGET) $(OBJECTS) $(LIBS)\n");
2816          f.Puts("endif\n");
2817
2818          //f.Puts("# POST-BUILD COMMANDS\n");
2819          if(options && options.postbuildCommands)
2820          {
2821             for(s : options.postbuildCommands)
2822                if(s && s[0]) f.Printf("\t%s\n", s);
2823          }
2824          if(config && config.options && config.options.postbuildCommands)
2825          {
2826             for(s : config.options.postbuildCommands)
2827                if(s && s[0]) f.Printf("\t%s\n", s);
2828          }
2829          if(platforms || (config && config.platforms))
2830          {
2831             ifCount = 0;
2832             //f.Puts("# TARGET_PLATFORM-SPECIFIC POST-BUILD COMMANDS\n");
2833             for(platform = (Platform)1; platform < Platform::enumSize; platform++)
2834             {
2835                PlatformOptions projectPOs, configPOs;
2836                MatchProjectAndConfigPlatformOptions(config, platform, &projectPOs, &configPOs);
2837
2838                if((projectPOs && projectPOs.options.postbuildCommands && projectPOs.options.postbuildCommands.count) ||
2839                      (configPOs && configPOs.options.postbuildCommands && configPOs.options.postbuildCommands.count))
2840                {
2841                   if(ifCount)
2842                      f.Puts("else\n");
2843                   ifCount++;
2844                   f.Printf("ifdef %s\n", PlatformToMakefileTargetVariable(platform));
2845
2846                   if(projectPOs && projectPOs.options.postbuildCommands && projectPOs.options.postbuildCommands.count)
2847                   {
2848                      for(s : projectPOs.options.postbuildCommands)
2849                         if(s && s[0]) f.Printf("\t%s\n", s);
2850                   }
2851                   if(configPOs && configPOs.options.postbuildCommands && configPOs.options.postbuildCommands.count)
2852                   {
2853                      for(s : configPOs.options.postbuildCommands)
2854                         if(s && s[0]) f.Printf("\t%s\n", s);
2855                   }
2856                }
2857             }
2858             if(ifCount)
2859             {
2860                int c;
2861                for(c = 0; c < ifCount; c++)
2862                   f.Puts("endif\n");
2863             }
2864          }
2865          f.Puts("\n");
2866
2867          f.Puts("# SYMBOL RULES\n");
2868          f.Puts("\n");
2869
2870          topNode.GenMakefilePrintSymbolRules(f, this, config, nodeCFlagsMapping, nodeECFlagsMapping);
2871
2872          f.Puts("# C OBJECT RULES\n");
2873          f.Puts("\n");
2874
2875          topNode.GenMakefilePrintCObjectRules(f, this, config, nodeCFlagsMapping, nodeECFlagsMapping);
2876
2877          f.Puts("# OBJECT RULES\n");
2878          f.Puts("\n");
2879          // todo call this still but only generate rules whith specific options
2880          // see we-have-file-specific-options in ProjectNode.ec
2881          topNode.GenMakefilePrintObjectRules(f, this, namesInfo, config, nodeCFlagsMapping, nodeECFlagsMapping);
2882
2883          if(numCObjects)
2884             GenMakefilePrintMainObjectRule(f, config);
2885
2886          f.Printf("cleantarget: objdir%s\n", sameObjTargetDirs ? "" : " targetdir");
2887          f.Puts("\t$(call rmq,$(TARGET))\n");
2888          f.Puts("\n");
2889
2890          f.Puts("clean: cleantarget\n");
2891          OutputCleanActions(f, "_OBJECTS", objectsParts);
2892          if(numCObjects)
2893          {
2894             f.Printf("\t$(call rmq,%s)\n", "$(OBJ)$(MODULE).main.o $(OBJ)$(MODULE).main.c $(OBJ)$(MODULE).main.ec $(OBJ)$(MODULE).main$(I) $(OBJ)$(MODULE).main$(S)");
2895             OutputCleanActions(f, "ECOBJECTS", eCsourcesParts);
2896             OutputCleanActions(f, "COBJECTS", eCsourcesParts);
2897             OutputCleanActions(f, "BOWLS", eCsourcesParts);
2898             OutputCleanActions(f, "IMPORTS", eCsourcesParts);
2899             OutputCleanActions(f, "SYMBOLS", eCsourcesParts);
2900          }
2901          f.Puts("\n");
2902
2903          f.Puts("realclean: cleantarget\n");
2904          f.Puts("\t$(call rmrq,$(OBJ))\n");
2905          if(!sameObjTargetDirs)
2906             f.Printf("\t$(call rmdirq,%s)\n", targetDirExpNoSpaces);
2907          f.Puts("\n");
2908
2909          f.Puts("distclean: cleantarget\n");
2910          if(!sameObjTargetDirs)
2911             f.Printf("\t$(call rmdirq,%s)\n", targetDirExpNoSpaces);
2912          f.Puts("\t$(call rmrq,obj/)\n");
2913
2914          delete f;
2915
2916          listItems.Free();
2917          delete listItems;
2918          varStringLenDiffs.Free();
2919          delete varStringLenDiffs;
2920          namesInfo.Free();
2921          delete namesInfo;
2922
2923          delete cflagsVariations;
2924          delete nodeCFlagsMapping;
2925          delete ecflagsVariations;
2926          delete nodeECFlagsMapping;
2927
2928          result = true;
2929       }
2930
2931       // ChangeWorkingDir(oldDirectory);
2932       // delete pathBackup;
2933
2934       if(config)
2935          config.makingModified = false;
2936       return result;
2937    }
2938
2939    void GenMakefilePrintMainObjectRule(File f, ProjectConfig config)
2940    {
2941       char extension[MAX_EXTENSION] = "c";
2942       char modulePath[MAX_LOCATION];
2943       char fixedModuleName[MAX_FILENAME];
2944       DualPipe dep;
2945       char command[2048];
2946       char objDirNoSpaces[MAX_LOCATION];
2947       String objDirExp = GetObjDirExpression(config);
2948
2949       ReplaceSpaces(objDirNoSpaces, objDirExp);
2950       ReplaceSpaces(fixedModuleName, moduleName);
2951       
2952       //sprintf(fixedModuleName, "%s.main", fixedPrjName);
2953       //strcat(fixedModuleName, ".main");
2954
2955 #if 0       // TODO: Fix nospaces stuff
2956       // *** Dependency command ***
2957       sprintf(command, "gcc -MT $(OBJ)%s$(O) -MM $(OBJ)%s.c", fixedModuleName, fixedModuleName);
2958
2959       // System Includes (from global settings)
2960       for(item : compiler.dirs[Includes])
2961       {
2962          strcat(command, " -isystem ");
2963          if(strchr(item.name, ' '))
2964          {
2965             strcat(command, "\"");
2966             strcat(command, item);
2967             strcat(command, "\"");
2968          }
2969          else
2970             strcat(command, item);
2971       }
2972
2973       for(item = includeDirs.first; item; item = item.next)
2974       {
2975          strcat(command, " -I");
2976          if(strchr(item.name, ' '))
2977          {
2978             strcat(command, "\"");
2979             strcat(command, item.name);
2980             strcat(command, "\"");
2981          }
2982          else
2983             strcat(command, item.name);
2984       }
2985       for(item = preprocessorDefs.first; item; item = item.next)
2986       {
2987          strcat(command, " -D");
2988          strcat(command, item.name);
2989       }
2990
2991       // Execute it
2992       if((dep = DualPipeOpen(PipeOpenMode { output = 1, error = 1, input = 2 }, command)))
2993       {
2994          char line[1024];
2995          bool result = true;
2996          bool firstLine = true;
2997
2998          // To do some time: auto save external dependencies?
2999          while(!dep.Eof())
3000          {
3001             if(dep.GetLine(line, sizeof(line)-1))
3002             {
3003                if(firstLine)
3004                {
3005                   char * colon = strstr(line, ":");
3006                   if(strstr(line, "No such file") || strstr(line, ",") || (colon && strstr(colon+1, ":")))
3007                   {
3008                      result = false;
3009                      break;
3010                   }
3011                   firstLine = false;
3012                }
3013                f.Puts(line);
3014                f.Puts("\n");
3015             }
3016             if(!result) break;
3017          }
3018          delete dep;
3019
3020          // If we failed to generate dependencies...
3021          if(!result)
3022          {
3023 #endif
3024             f.Puts("$(OBJ)$(MODULE).main$(O): $(OBJ)$(MODULE).main.c\n");
3025             f.Printf("\t$(CC) $(CFLAGS) $(PRJ_CFLAGS) $(FVISIBILITY) -c $(OBJ)$(MODULE).main.%s -o $(OBJ)$(MODULE).main$(O)\n", extension);
3026             f.Puts("\n");
3027 #if 0
3028          }
3029       }
3030 #endif
3031    }
3032
3033    void GenMakePrintCustomFlags(File f, String variableName, bool printNonCustom, Map<String, int> cflagsVariations)
3034    {
3035       int c;
3036       for(c = printNonCustom ? 0 : 1; c <= cflagsVariations.count; c++)
3037       {
3038          for(v : cflagsVariations)
3039          {
3040             if(v == c)
3041             {
3042                if(v == 1)
3043                   f.Printf("%s +=", variableName);
3044                else
3045                   f.Printf("CUSTOM%d_%s =", v-1, variableName);
3046                f.Puts(&v ? &v : "");
3047                f.Puts("\n");
3048                f.Puts("\n");
3049                break;
3050             }
3051          }
3052       }
3053       f.Puts("\n");
3054    }
3055
3056    void MatchProjectAndConfigPlatformOptions(ProjectConfig config, Platform platform,
3057          PlatformOptions * projectPlatformOptions, PlatformOptions * configPlatformOptions)
3058    {
3059       *projectPlatformOptions = null;
3060       *configPlatformOptions = null;
3061       if(platforms)
3062       {
3063          for(p : platforms)
3064          {
3065             if(!strcmpi(p.name, platform))
3066             {
3067                *projectPlatformOptions = p;
3068                break;
3069             }
3070          }
3071       }
3072       if(config && config.platforms)
3073       {
3074          for(p : config.platforms)
3075          {
3076             if(!strcmpi(p.name, platform))
3077             {
3078                *configPlatformOptions = p;
3079                break;
3080             }
3081          }
3082       }
3083    }
3084 }
3085
3086 Project LegacyBinaryLoadProject(File f, char * filePath)
3087 {
3088    Project project = null;
3089    char signature[sizeof(epjSignature)];
3090
3091    f.Read(signature, sizeof(signature), 1);
3092    if(!strncmp(signature, (char *)epjSignature, sizeof(epjSignature)))
3093    {
3094       char topNodePath[MAX_LOCATION];
3095       /*ProjectConfig newConfig
3096       {
3097          name = CopyString("Default");
3098          makingModified = true;
3099          compilingModified = true;
3100          linkingModified = true;
3101          options = { };
3102       };*/
3103
3104       project = Project { options = { } };
3105       LegacyBinaryLoadNode(project.topNode, f);
3106       delete project.topNode.path;
3107       GetWorkingDir(topNodePath, sizeof(topNodePath)-1);
3108       MakeSlashPath(topNodePath);
3109
3110       PathCatSlash(topNodePath, filePath);
3111       project.filePath = topNodePath;
3112       
3113       /* THIS IS ALREADY DONE BY filePath property
3114       StripLastDirectory(topNodePath, topNodePath);
3115       project.topNode.path = CopyString(topNodePath);
3116       */
3117       // Shouldn't this be done BEFORE the StripLastDirectory? project.filePath = topNodePath;
3118       
3119       // newConfig.options.defaultNameSpace = "";
3120       /*newConfig.objDir.dir = "obj";
3121       newConfig.targetDir.dir = "";*/
3122
3123       //project.configurations = { [ newConfig ] };
3124       //project.config = newConfig;
3125
3126       // Project Settings
3127       if(!f.Eof())
3128       {
3129          int temp;
3130          int len,c, count;
3131          String targetFileName, targetDirectory, objectsDirectory;
3132
3133          // { executable = 0, sharedLibrary = 1, staticLibrary = 2 };
3134          f.Read(&temp, sizeof(int),1);
3135          switch(temp)
3136          {
3137             case 0: project.options.targetType = executable; break;
3138             case 1: project.options.targetType = sharedLibrary; break;
3139             case 2: project.options.targetType = staticLibrary; break;
3140          }
3141
3142          f.Read(&len, sizeof(int),1);
3143          targetFileName = new char[len+1];
3144          f.Read(targetFileName, sizeof(char), len+1);
3145          project.options.targetFileName = targetFileName;
3146          delete targetFileName;
3147
3148          f.Read(&len, sizeof(int),1);
3149          targetDirectory = new char[len+1];
3150          f.Read(targetDirectory, sizeof(char), len+1);
3151          project.options.targetDirectory = targetDirectory;
3152          delete targetDirectory;
3153
3154          f.Read(&len, sizeof(int),1);
3155          objectsDirectory = new byte[len+1];
3156          f.Read(objectsDirectory, sizeof(char), len+1);
3157          project.options.objectsDirectory = objectsDirectory;
3158          delete objectsDirectory;
3159
3160          f.Read(&temp, sizeof(int),1);
3161          project./*config.*/options.debug = temp ? true : false;
3162          f.Read(&temp, sizeof(int),1);         
3163          project./*config.*/options.optimization = temp ? speed : none;
3164          f.Read(&temp, sizeof(int),1);
3165          project./*config.*/options.profile = temp ? true : false;
3166          f.Read(&temp, sizeof(int),1);
3167          project.options.warnings = temp ? all : unset;
3168
3169          f.Read(&count, sizeof(int),1);
3170          if(count)
3171          {
3172             project.options.includeDirs = { };
3173             for(c = 0; c < count; c++)
3174             {
3175                char * name;
3176                f.Read(&len, sizeof(int),1);
3177                name = new char[len+1];
3178                f.Read(name, sizeof(char), len+1);
3179                project.options.includeDirs.Add(name);
3180             }
3181          }
3182
3183          f.Read(&count, sizeof(int),1);
3184          if(count)
3185          {
3186             project.options.libraryDirs = { };
3187             for(c = 0; c < count; c++)
3188             {
3189                char * name;            
3190                f.Read(&len, sizeof(int),1);
3191                name = new char[len+1];
3192                f.Read(name, sizeof(char), len+1);
3193                project.options.libraryDirs.Add(name);
3194             }
3195          }
3196
3197          f.Read(&count, sizeof(int),1);
3198          if(count)
3199          {
3200             project.options.libraries = { };
3201             for(c = 0; c < count; c++)
3202             {
3203                char * name;
3204                f.Read(&len, sizeof(int),1);
3205                name = new char[len+1];
3206                f.Read(name, sizeof(char), len+1);
3207                project.options.libraries.Add(name);
3208             }
3209          }
3210
3211          f.Read(&count, sizeof(int),1);
3212          if(count)
3213          {
3214             project.options.preprocessorDefinitions = { };
3215             for(c = 0; c < count; c++)
3216             {
3217                char * name;
3218                f.Read(&len, sizeof(int),1);
3219                name = new char[len+1];
3220                f.Read(name, sizeof(char), len+1);
3221                project.options.preprocessorDefinitions.Add(name);
3222             }
3223          }
3224
3225          f.Read(&temp, sizeof(int),1);
3226          project.options.console = temp ? true : false;
3227       }
3228
3229       for(node : project.topNode.files)
3230       {
3231          if(node.type == resources)
3232          {
3233             project.resNode = node;
3234             break;
3235          }
3236       }
3237    }
3238    else
3239       f.Seek(0, start);
3240    return project;
3241 }
3242
3243 void ProjectConfig::LegacyProjectConfigLoad(File f)
3244 {  
3245    delete options;
3246    options = { };
3247    while(!f.Eof())
3248    {
3249       char buffer[65536];
3250       char section[128];
3251       char subSection[128];
3252       char * equal;
3253       int len;
3254       uint pos;
3255       
3256       pos = f.Tell();
3257       f.GetLine(buffer, 65536 - 1);
3258       TrimLSpaces(buffer, buffer);
3259       TrimRSpaces(buffer, buffer);
3260       if(strlen(buffer))
3261       {
3262          if(buffer[0] == '-')
3263          {
3264             equal = &buffer[0];
3265             equal[0] = ' ';
3266             TrimLSpaces(equal, equal);
3267             if(!strcmpi(subSection, "LibraryDirs"))
3268             {
3269                if(!options.libraryDirs)
3270                   options.libraryDirs = { [ CopyString(equal) ] };
3271                else
3272                   options.libraryDirs.Add(CopyString(equal));
3273             }
3274             else if(!strcmpi(subSection, "IncludeDirs"))
3275             {
3276                if(!options.includeDirs)
3277                   options.includeDirs = { [ CopyString(equal) ] };
3278                else
3279                   options.includeDirs.Add(CopyString(equal));
3280             }
3281          }
3282          else if(buffer[0] == '+')
3283          {
3284             if(name)
3285             {
3286                f.Seek(pos, start);
3287                break;
3288             }
3289             else
3290             {
3291                equal = &buffer[0];
3292                equal[0] = ' ';
3293                TrimLSpaces(equal, equal);
3294                delete name; name = CopyString(equal); // property::name = equal;
3295             }
3296          }
3297          else if(!strcmpi(buffer, "Compiler Options"))
3298             strcpy(section, buffer);
3299          else if(!strcmpi(buffer, "IncludeDirs"))
3300             strcpy(subSection, buffer);
3301          else if(!strcmpi(buffer, "Linker Options"))
3302             strcpy(section, buffer);
3303          else if(!strcmpi(buffer, "LibraryDirs"))
3304             strcpy(subSection, buffer);
3305          else if(!strcmpi(buffer, "Files") || !strcmpi(buffer, "Resources"))
3306          {
3307             f.Seek(pos, start);
3308             break;
3309          }
3310          else
3311          {
3312             equal = strstr(buffer, "=");
3313             if(equal)
3314             {
3315                equal[0] = '\0';
3316                TrimRSpaces(buffer, buffer);
3317                equal++;
3318                TrimLSpaces(equal, equal);
3319                if(!strcmpi(buffer, "Target Name"))
3320                   options.targetFileName = /*CopyString(*/equal/*)*/;
3321                else if(!strcmpi(buffer, "Target Type"))
3322                {
3323                   if(!strcmpi(equal, "Executable"))
3324                      options.targetType = executable;
3325                   else if(!strcmpi(equal, "Shared"))
3326                      options.targetType = sharedLibrary;
3327                   else if(!strcmpi(equal, "Static"))
3328                      options.targetType = staticLibrary;
3329                   else
3330                      options.targetType = executable;
3331                }
3332                else if(!strcmpi(buffer, "Target Directory"))
3333                   options.targetDirectory = /*CopyString(*/equal/*)*/;
3334                else if(!strcmpi(buffer, "Console"))
3335                   options.console = ParseTrueFalseValue(equal);
3336                else if(!strcmpi(buffer, "Libraries"))
3337                {
3338                   if(!options.libraries) options.libraries = { };
3339                   ParseArrayValue(options.libraries, equal);
3340                }
3341                else if(!strcmpi(buffer, "Intermediate Directory"))
3342                   options.objectsDirectory = /*CopyString(*/equal/*)*/; //objDir.expression = equal;
3343                else if(!strcmpi(buffer, "Debug"))
3344                   options.debug = ParseTrueFalseValue(equal);
3345                else if(!strcmpi(buffer, "Optimize"))
3346                {
3347                   if(!strcmpi(equal, "None"))
3348                      options.optimization = none;
3349                   else if(!strcmpi(equal, "Speed") || !strcmpi(equal, "True"))
3350                      options.optimization = speed;
3351                   else if(!strcmpi(equal, "Size"))
3352                      options.optimization = size;
3353                   else
3354                      options.optimization = none;
3355                }
3356                else if(!strcmpi(buffer, "Compress"))
3357                   options.compress = ParseTrueFalseValue(equal);
3358                else if(!strcmpi(buffer, "Profile"))
3359                   options.profile = ParseTrueFalseValue(equal);
3360                else if(!strcmpi(buffer, "AllWarnings"))
3361                   options.warnings = ParseTrueFalseValue(equal) ? all : unset;
3362                else if(!strcmpi(buffer, "MemoryGuard"))
3363                   options.memoryGuard = ParseTrueFalseValue(equal);
3364                else if(!strcmpi(buffer, "Default Name Space"))
3365                   options.defaultNameSpace = CopyString(equal);
3366                else if(!strcmpi(buffer, "Strict Name Spaces"))
3367                   options.strictNameSpaces = ParseTrueFalseValue(equal);
3368                else if(!strcmpi(buffer, "Preprocessor Definitions"))
3369                {
3370                   if(!options.preprocessorDefinitions) options.preprocessorDefinitions = { };
3371                   ParseArrayValue(options.preprocessorDefinitions, equal);
3372                }
3373             }
3374          }
3375       }
3376    }
3377    if(!options.targetDirectory && options.objectsDirectory)
3378       options.targetDirectory = /*CopyString(*/options.objectsDirectory/*)*/;
3379    //if(!objDir.dir) objDir.dir = "obj";
3380    //if(!targetDir.dir) targetDir.dir = "";
3381    // if(!targetName) property::targetName = "";   // How can a targetFileName be nothing???
3382    // if(!defaultNameSpace) property::defaultNameSpace = "";
3383    makingModified = true;
3384 }
3385
3386 Project LegacyAsciiLoadProject(File f, char * filePath)
3387 {
3388    Project project = null;
3389    ProjectNode node = null;
3390    int pos;
3391    char parentPath[MAX_LOCATION];
3392    char section[128] = "";
3393    char subSection[128] = "";
3394    ProjectNode parent;
3395    bool configurationsPresent = false;
3396
3397    f.Seek(0, start);
3398    while(!f.Eof())
3399    {
3400       char buffer[65536];
3401       //char version[16];
3402       char * equal;
3403       int len;
3404       pos = f.Tell();
3405       f.GetLine(buffer, 65536 - 1);
3406       TrimLSpaces(buffer, buffer);
3407       TrimRSpaces(buffer, buffer);
3408       if(strlen(buffer))
3409       {
3410          if(buffer[0] == '-' || buffer[0] == '=')
3411          {
3412             bool simple = buffer[0] == '-';
3413             equal = &buffer[0];
3414             equal[0] = ' ';
3415             TrimLSpaces(equal, equal);
3416             if(!strcmpi(section, "Target") && !strcmpi(subSection, "LibraryDirs"))
3417             {
3418                if(!project.config.options.libraryDirs)
3419                   project.config.options.libraryDirs = { [ CopyString(equal) ] };
3420                else
3421                   project.config.options.libraryDirs.Add(CopyString(equal));
3422             }
3423             else if(!strcmpi(section, "Target") && !strcmpi(subSection, "IncludeDirs"))
3424             {
3425                if(!project.config.options.includeDirs)
3426                   project.config.options.includeDirs = { [ CopyString(equal) ] };
3427                else
3428                   project.config.options.includeDirs.Add(CopyString(equal));
3429             }
3430             else if(!strcmpi(section, "Target") && (!strcmpi(subSection, "Files") || !strcmpi(subSection, "Resources")))
3431             {
3432                len = strlen(equal);
3433                if(len)
3434                {
3435                   char temp[MAX_LOCATION];
3436                   ProjectNode child { };
3437                   // We don't need to do this anymore, fileName is just a property that sets name & path
3438                   // child.fileName = CopyString(equal);
3439                   if(simple)
3440                   {
3441                      child.name = CopyString(equal);
3442                      child.path = CopyString(parentPath);
3443                   }
3444                   else
3445                   {
3446                      GetLastDirectory(equal, temp);
3447                      child.name = CopyString(temp);
3448                      StripLastDirectory(equal, temp);
3449                      child.path = CopyString(temp);
3450                   }
3451                   child.nodeType = file;
3452                   child.parent = parent;
3453                   child.indent = parent.indent + 1;
3454                   child.type = file;
3455                   child.icon = NodeIcons::SelectFileIcon(child.name);
3456                   parent.files.Add(child);
3457                   node = child;
3458                   //child = null;
3459                }
3460                else
3461                {
3462                   StripLastDirectory(parentPath, parentPath);
3463                   parent = parent.parent;
3464                }
3465             }
3466          }
3467          else if(buffer[0] == '+')
3468          {
3469             equal = &buffer[0];
3470             equal[0] = ' ';
3471             TrimLSpaces(equal, equal);
3472             if(!strcmpi(section, "Target") && (!strcmpi(subSection, "Files") || !strcmpi(subSection, "Resources")))
3473             {
3474                char temp[MAX_LOCATION];
3475                ProjectNode child { };
3476                // NEW: Folders now have a path set like files
3477                child.name = CopyString(equal);
3478                strcpy(temp, parentPath);
3479                PathCatSlash(temp, child.name);
3480                child.path = CopyString(temp);
3481
3482                child.parent = parent;
3483                child.indent = parent.indent + 1;
3484                child.type = folder;
3485                child.nodeType = folder;
3486                child.files = { };
3487                child.icon = folder;
3488                PathCatSlash(parentPath, child.name);
3489                parent.files.Add(child);
3490                parent = child;
3491                node = child;
3492                //child = null;
3493             }
3494             else if(!strcmpi(section, "Configurations"))
3495             {
3496                ProjectConfig newConfig
3497                {
3498                   makingModified = true;
3499                   options = { };
3500                };
3501                f.Seek(pos, start);
3502                LegacyProjectConfigLoad(newConfig, f);
3503                project.configurations.Add(newConfig);
3504             }
3505          }
3506          else if(!strcmpi(buffer, "ECERE Project File"));
3507          else if(!strcmpi(buffer, "Version 0a"))
3508             ; //strcpy(version, "0a");
3509          else if(!strcmpi(buffer, "Version 0.1a"))
3510             ; //strcpy(version, "0.1a");
3511          else if(!strcmpi(buffer, "Configurations"))
3512          {
3513             project.configurations.Free();
3514             project.config = null;
3515             strcpy(section, buffer);
3516             configurationsPresent = true;
3517          }
3518          else if(!strcmpi(buffer, "Target") || !strnicmp(buffer, "Target \"", strlen("Target \"")))
3519          {
3520             ProjectConfig newConfig { name = CopyString("Default"), options = { } };
3521             char topNodePath[MAX_LOCATION];
3522             // newConfig.defaultNameSpace = "";
3523             //newConfig.objDir.dir = "obj";
3524             //newConfig.targetDir.dir = "";
3525             project = Project { /*options = { }*/ };
3526             project.configurations = { [ newConfig ] };
3527             project.config = newConfig;
3528             // if(project.topNode.path) delete project.topNode.path;
3529             GetWorkingDir(topNodePath, sizeof(topNodePath)-1);
3530             MakeSlashPath(topNodePath);
3531             PathCatSlash(topNodePath, filePath);
3532             project.filePath = topNodePath;
3533             parentPath[0] = '\0';
3534             parent = project.topNode;
3535             node = parent;
3536             strcpy(section, "Target");
3537             equal = &buffer[6];
3538             if(equal[0] == ' ')
3539             {
3540                equal++;
3541                if(equal[0] == '\"')
3542                {
3543                   StripQuotes(equal, equal);
3544                   delete project.moduleName; project.moduleName = CopyString(equal);
3545                }
3546             }
3547          }
3548          else if(!strcmpi(buffer, "Compiler Options"));
3549          else if(!strcmpi(buffer, "IncludeDirs"))
3550             strcpy(subSection, buffer);
3551          else if(!strcmpi(buffer, "Linker Options"));
3552          else if(!strcmpi(buffer, "LibraryDirs"))
3553             strcpy(subSection, buffer);
3554          else if(!strcmpi(buffer, "Files"))
3555          {
3556             strcpy(section, "Target");
3557             strcpy(subSection, buffer);
3558          }
3559          else if(!strcmpi(buffer, "Resources"))
3560          {
3561             ProjectNode child { };
3562             parent.files.Add(child);
3563             child.parent = parent;
3564             child.indent = parent.indent + 1;
3565             child.name = CopyString(buffer);
3566             child.path = CopyString("");
3567             child.type = resources;
3568             child.files = { };
3569             child.icon = archiveFile;
3570             project.resNode = child;
3571             parent = child;
3572             node = child;
3573             strcpy(subSection, buffer);
3574          }
3575          else
3576          {
3577             equal = strstr(buffer, "=");
3578             if(equal)
3579             {
3580                equal[0] = '\0';
3581                TrimRSpaces(buffer, buffer);
3582                equal++;
3583                TrimLSpaces(equal, equal);
3584
3585                if(!strcmpi(section, "Target"))
3586                {
3587                   if(!strcmpi(buffer, "Build Exclusions"))
3588                   {
3589                      if(!strcmpi(section, "Target") && !strcmpi(subSection, "Files"))
3590                      {
3591                         /*if(node && node.type != NodeTypes::project)
3592                            ParseListValue(node.buildExclusions, equal);*/
3593                      }
3594                   }
3595                   else if(!strcmpi(buffer, "Path") && !strcmpi(subSection, "Resources"))
3596                   {
3597                      delete project.resNode.path;
3598                      project.resNode.path = CopyString(equal);
3599                      PathCatSlash(parentPath, equal);
3600                   }
3601
3602                   // Config Settings
3603                   else if(!strcmpi(buffer, "Intermediate Directory"))
3604                      project.config.options.objectsDirectory = /*CopyString(*/equal/*)*/; //objDir.expression = equal;
3605                   else if(!strcmpi(buffer, "Debug"))
3606                      project.config.options.debug = ParseTrueFalseValue(equal);
3607                   else if(!strcmpi(buffer, "Optimize"))
3608                   {
3609                      if(!strcmpi(equal, "None"))
3610                         project.config.options.optimization = none;
3611                      else if(!strcmpi(equal, "Speed") || !strcmpi(equal, "True"))
3612                         project.config.options.optimization = speed;
3613                      else if(!strcmpi(equal, "Size"))
3614                         project.config.options.optimization = size;
3615                      else
3616                         project.config.options.optimization = none;
3617                   }
3618                   else if(!strcmpi(buffer, "Profile"))
3619                      project.config.options.profile = ParseTrueFalseValue(equal);
3620                   else if(!strcmpi(buffer, "MemoryGuard"))
3621                      project.config.options.memoryGuard = ParseTrueFalseValue(equal);
3622                   else
3623                   {
3624                      if(!project.options) project.options = { };
3625
3626                      // Project Wide Settings (All configs)
3627                      if(!strcmpi(buffer, "Target Name"))
3628                         project.options.targetFileName = /*CopyString(*/equal/*)*/;
3629                      else if(!strcmpi(buffer, "Target Type"))
3630                      {
3631                         if(!strcmpi(equal, "Executable"))
3632                            project.options.targetType = executable;
3633                         else if(!strcmpi(equal, "Shared"))
3634                            project.options.targetType = sharedLibrary;
3635                         else if(!strcmpi(equal, "Static"))
3636                            project.options.targetType = staticLibrary;
3637                         else
3638                            project.options.targetType = executable;
3639                      }
3640                      else if(!strcmpi(buffer, "Target Directory"))
3641                         project.options.targetDirectory = /*CopyString(*/equal/*)*/;
3642                      else if(!strcmpi(buffer, "Console"))
3643                         project.options.console = ParseTrueFalseValue(equal);
3644                      else if(!strcmpi(buffer, "Libraries"))
3645                      {
3646                         if(!project.options.libraries) project.options.libraries = { };
3647                         ParseArrayValue(project.options.libraries, equal);
3648                      }
3649                      else if(!strcmpi(buffer, "AllWarnings"))
3650                         project.options.warnings = ParseTrueFalseValue(equal) ? all : unset;
3651                      else if(!strcmpi(buffer, "Preprocessor Definitions"))
3652                      {
3653                         if(!strcmpi(section, "Target") && !strcmpi(subSection, "Files"))
3654                         {
3655                            /*if(node && (node.type == NodeTypes::project || (node.type == file && !node.isInResources) || node.type == folder))
3656                               ParseListValue(node.preprocessorDefs, equal);*/
3657                         }
3658                         else
3659                         {
3660                            if(!project.options.preprocessorDefinitions) project.options.preprocessorDefinitions = { };
3661                            ParseArrayValue(project.options.preprocessorDefinitions, equal);
3662                         }
3663                      }
3664                   }
3665                }
3666             }
3667          }
3668       }
3669    }
3670    parent = null;
3671
3672    SplitPlatformLibraries(project);
3673
3674    if(configurationsPresent)
3675       CombineIdenticalConfigOptions(project);
3676    return project;
3677 }
3678
3679 void SplitPlatformLibraries(Project project)
3680 {
3681    if(project && project.configurations)
3682    {
3683       for(cfg : project.configurations)
3684       {
3685          if(cfg.options.libraries && cfg.options.libraries.count)
3686          {
3687             Iterator<String> it { cfg.options.libraries };
3688             while(it.Next())
3689             {
3690                String l = it.data;
3691                char * platformName = strstr(l, ":");
3692                if(platformName)
3693                {
3694                   PlatformOptions platform = null;
3695                   platformName++;
3696                   if(!cfg.platforms) cfg.platforms = { };
3697                   for(p : cfg.platforms)
3698                   {
3699                      if(!strcmpi(platformName, p.name))
3700                      {
3701                         platform = p;
3702                         break;
3703                      }
3704                   }
3705                   if(!platform)
3706                   {
3707                      platform = { name = CopyString(platformName), options = { libraries = { } } };
3708                      cfg.platforms.Add(platform);
3709                   }
3710                   *(platformName-1) = 0;
3711                   platform.options.libraries.Add(CopyString(l));
3712
3713                   cfg.options.libraries.Delete(it.pointer);
3714                   it.pointer = null;
3715                }
3716             }
3717          }
3718       }      
3719    }
3720 }
3721
3722 void CombineIdenticalConfigOptions(Project project)
3723 {
3724    if(project && project.configurations && project.configurations.count)
3725    {
3726       DataMember member;
3727       ProjectOptions nullOptions { };
3728       ProjectConfig firstConfig = null;
3729       for(cfg : project.configurations)
3730       {
3731          if(cfg.options.targetType != staticLibrary)
3732          {
3733             firstConfig = cfg;
3734             break;
3735          }
3736       }
3737       if(!firstConfig)
3738          firstConfig = project.configurations.firstIterator.data;
3739
3740       for(member = class(ProjectOptions).membersAndProperties.first; member; member = member.next)
3741       {
3742          if(!member.isProperty)
3743          {
3744             Class type = eSystem_FindClass(__thisModule, member.dataTypeString);
3745             if(type)
3746             {
3747                bool same = true;
3748
3749                for(cfg : project.configurations)
3750                {
3751                   if(cfg != firstConfig)
3752                   {
3753                      if(cfg.options.targetType != staticLibrary)
3754                      {
3755                         int result;
3756                         
3757                         if(type.type == noHeadClass || type.type == normalClass)
3758                         {
3759                            result = ((int (*)(void *, void *, void *))(void *)type._vTbl[__ecereVMethodID_class_OnCompare])(type, 
3760                               *(void **)((byte *)firstConfig.options + member.offset + member._class.offset),
3761                               *(void **)((byte *)cfg.options         + member.offset + member._class.offset));
3762                         }
3763                         else
3764                         {
3765                            result = ((int (*)(void *, void *, void *))(void *)type._vTbl[__ecereVMethodID_class_OnCompare])(type, 
3766                               (byte *)firstConfig.options + member.offset + member._class.offset,
3767                               (byte *)cfg.options         + member.offset + member._class.offset);
3768                         }
3769                         if(result)
3770                         {
3771                            same = false;
3772                            break;
3773                         }
3774                      }
3775                   }                  
3776                }
3777                if(same)
3778                {
3779                   if(type.type == noHeadClass || type.type == normalClass)
3780                   {
3781                      if(!((int (*)(void *, void *, void *))(void *)type._vTbl[__ecereVMethodID_class_OnCompare])(type, 
3782                         *(void **)((byte *)firstConfig.options + member.offset + member._class.offset),
3783                         *(void **)((byte *)nullOptions         + member.offset + member._class.offset)))
3784                         continue;
3785                   }
3786                   else
3787                   {
3788                      if(!((int (*)(void *, void *, void *))(void *)type._vTbl[__ecereVMethodID_class_OnCompare])(type, 
3789                         (byte *)firstConfig.options + member.offset + member._class.offset,
3790                         (byte *)nullOptions         + member.offset + member._class.offset))
3791                         continue;
3792                   }
3793
3794                   if(!project.options) project.options = { };
3795                   
3796                   /*if(type.type == noHeadClass || type.type == normalClass)
3797                   {
3798                      ((void (*)(void *, void *, void *))(void *)type._vTbl[__ecereVMethodID_class_OnCopy])(type, 
3799                         (byte *)project.options + member.offset + member._class.offset,
3800                         *(void **)((byte *)firstConfig.options + member.offset + member._class.offset));
3801                   }
3802                   else
3803                   {
3804                      void * address = (byte *)firstConfig.options + member.offset + member._class.offset;
3805                      // TOFIX: ListBox::SetData / OnCopy mess
3806                      ((void (*)(void *, void *, void *))(void *)type._vTbl[__ecereVMethodID_class_OnCopy])(type, 
3807                         (byte *)project.options + member.offset + member._class.offset,
3808                         (type.typeSize > 4) ? address : 
3809                            ((type.typeSize == 4) ? (void *)*(uint32 *)address : 
3810                               ((type.typeSize == 2) ? (void *)*(uint16*)address : 
3811                                  (void *)*(byte *)address )));                              
3812                   }*/
3813                   memcpy(
3814                      (byte *)project.options + member.offset + member._class.offset,
3815                      (byte *)firstConfig.options + member.offset + member._class.offset, type.typeSize);
3816
3817                   for(cfg : project.configurations)
3818                   {
3819                      if(cfg.options.targetType == staticLibrary)
3820                      {
3821                         int result;
3822                         
3823                         if(type.type == noHeadClass || type.type == normalClass)
3824                         {
3825                            result = ((int (*)(void *, void *, void *))(void *)type._vTbl[__ecereVMethodID_class_OnCompare])(type, 
3826                               *(void **)((byte *)firstConfig.options + member.offset + member._class.offset),
3827                               *(void **)((byte *)cfg.options         + member.offset + member._class.offset));
3828                         }
3829                         else
3830                         {
3831                            result = ((int (*)(void *, void *, void *))(void *)type._vTbl[__ecereVMethodID_class_OnCompare])(type, 
3832                               (byte *)firstConfig.options + member.offset + member._class.offset,
3833                               (byte *)cfg.options         + member.offset + member._class.offset);
3834                         }
3835                         if(result)
3836                            continue;
3837                      }
3838                      if(cfg != firstConfig)
3839                      {
3840                         if(type.type == noHeadClass || type.type == normalClass)
3841                         {
3842                            ((void (*)(void *, void *))(void *)type._vTbl[__ecereVMethodID_class_OnFree])(type, 
3843                               *(void **)((byte *)cfg.options + member.offset + member._class.offset));
3844                         }
3845                         else
3846                         {
3847                            ((void (*)(void *, void *))(void *)type._vTbl[__ecereVMethodID_class_OnFree])(type, 
3848                               (byte *)cfg.options + member.offset + member._class.offset);
3849                         }
3850                         memset((byte *)cfg.options + member.offset + member._class.offset, 0, type.typeSize);
3851                      }                     
3852                   }
3853                   memset((byte *)firstConfig.options + member.offset + member._class.offset, 0, type.typeSize);
3854                }
3855             }
3856          }
3857       }
3858       delete nullOptions;
3859
3860       // Compare Platform Specific Settings
3861       {
3862          bool same = true;
3863          for(cfg : project.configurations)
3864          {
3865             if(cfg != firstConfig && cfg.options.targetType != staticLibrary && (firstConfig.platforms || cfg.platforms) &&
3866                ((!firstConfig.platforms && cfg.platforms) || firstConfig.platforms.OnCompare(cfg.platforms)))
3867             {
3868                same = false;
3869                break;
3870             }
3871          }
3872          if(same && firstConfig.platforms)
3873          {
3874             for(cfg : project.configurations)
3875             {
3876                if(cfg.options.targetType == staticLibrary && firstConfig.platforms.OnCompare(cfg.platforms))
3877                   continue;
3878                if(cfg != firstConfig)
3879                {
3880                   cfg.platforms.Free();
3881                   delete cfg.platforms;
3882                }
3883             }
3884             project.platforms = firstConfig.platforms;
3885             firstConfig.platforms = null;
3886          }
3887       }
3888
3889       // Static libraries can't contain libraries
3890       for(cfg : project.configurations)
3891       {
3892          if(cfg.options.targetType == staticLibrary)
3893          {
3894             if(!cfg.options.libraries) cfg.options.libraries = { };
3895             cfg.options.libraries.Free();
3896          }
3897       }
3898    }
3899 }
3900
3901 Project LoadProject(char * filePath, char * activeConfigName)
3902 {
3903    Project project = null;
3904    File f = FileOpen(filePath, read);
3905    if(f)
3906    {
3907       project = LegacyBinaryLoadProject(f, filePath);
3908       if(!project)
3909       {
3910          JSONParser parser { f = f };
3911          JSONResult result = parser.GetObject(class(Project), &project);
3912          if(project)
3913          {
3914             char insidePath[MAX_LOCATION];
3915
3916             delete project.topNode.files;
3917             if(!project.files) project.files = { };
3918             project.topNode.files = project.files;
3919             project.resNode = project.topNode.Add(project, "Resources", project.topNode.files.last, resources, archiveFile, false);
3920             delete project.resNode.path;
3921             project.resNode.path = project.resourcesPath;
3922             project.resourcesPath = null;
3923             project.resNode.nodeType = (ProjectNodeType)-1;
3924             delete project.resNode.files;
3925             project.resNode.files = project.resources;
3926             project.files = null;
3927             project.resources = null;
3928             if(!project.configurations) project.configurations = { };
3929
3930             {
3931                char topNodePath[MAX_LOCATION];
3932                GetWorkingDir(topNodePath, sizeof(topNodePath)-1);
3933                MakeSlashPath(topNodePath);
3934                PathCatSlash(topNodePath, filePath);
3935                project.filePath = topNodePath;//filePath;
3936             }
3937
3938             project.topNode.FixupNode(insidePath);
3939          }
3940          delete parser;
3941       }
3942       if(!project)
3943          project = LegacyAsciiLoadProject(f, filePath);
3944
3945       delete f;
3946
3947       if(project)
3948       {
3949          if(!project.options) project.options = { };
3950          if(activeConfigName && activeConfigName[0] && project.configurations)
3951          {
3952             for(cfg : project.configurations)
3953             {
3954                if(!strcmpi(cfg.name, activeConfigName))
3955                {
3956                   project.config = cfg;
3957                   break;
3958                }
3959             }
3960          }
3961          if(!project.config && project.configurations)
3962             project.config = project.configurations.firstIterator.data;
3963
3964          if(!project.resNode)
3965          {
3966             project.resNode = project.topNode.Add(project, "Resources", project.topNode.files.last, resources, archiveFile, false);
3967          }
3968          
3969          if(!project.moduleName)
3970             project.moduleName = CopyString(project.name);
3971          if(project.config && 
3972             (!project.options || !project.options.targetFileName || !project.options.targetFileName[0]) &&
3973             (!project.config.options.targetFileName || !project.config.options.targetFileName[0]))
3974          {
3975             //delete project.config.options.targetFileName;
3976             
3977             project.options.targetFileName = /*CopyString(*/project.moduleName/*)*/;
3978             project.config.options.optimization = none;
3979             project.config.options.debug = true;
3980             //project.config.options.warnings = unset;
3981             project.config.options.memoryGuard = false;
3982             project.config.compilingModified = true;
3983             project.config.linkingModified = true;
3984          }
3985          else if(!project.topNode.name && project.config)
3986          {
3987             project.topNode.name = CopyString(project.config.options.targetFileName);
3988          }
3989
3990          /* // THIS IS NOW AUTOMATED WITH A project CHECK IN ProjectNode
3991          project.topNode.configurations = project.configurations;
3992          project.topNode.platforms = project.platforms;
3993          project.topNode.options = project.options;*/
3994       }
3995    }
3996    return project;
3997 }