Makefiles/ide: Added $(FORCE_32_BIT) to ecs calls
[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 * gccPrefix = compiler.gccPrefix ? compiler.gccPrefix : "";
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             gccPrefix);
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(gccPrefix, "strip ");
1426       ar.concatx(gccPrefix, "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                ide.outputView.buildBox.Logf("\n%s (%s) - ", GetTargetFileName(config), configName);
1669             if(numErrors)
1670                ide.outputView.buildBox.Logf("%d %s, ", numErrors, (numErrors > 1) ? $"errors" : $"error");
1671             else
1672                ide.outputView.buildBox.Logf($"no error, ");
1673    
1674             if(numWarnings)
1675                ide.outputView.buildBox.Logf("%d %s\n", numWarnings, (numWarnings > 1) ? $"warnings" : $"warning");
1676             else
1677                ide.outputView.buildBox.Logf($"no warning\n");
1678          }
1679       }
1680
1681       delete test;
1682       delete ecp;
1683       delete ecc;
1684       delete ecs;
1685       delete ear;
1686       delete prefix;
1687       delete cpp;
1688       delete cc;
1689       delete cxx;
1690       delete strip;
1691       delete ar;
1692
1693       return numErrors == 0;
1694    }
1695
1696    void ProcessCleanPipeOutput(DualPipe f, CompilerConfig compiler, ProjectConfig config)
1697    {
1698       char line[65536];
1699       int lenMakeCommand = strlen(compiler.makeCommand);
1700       while(!f.Eof())
1701       {
1702          bool result = true;
1703          bool wait = true;
1704          double lastTime = GetTime();
1705          while(result)
1706          {
1707             if((result = f.Peek()) && (result = f.GetLine(line, sizeof(line)-1)))
1708             {
1709                if(strstr(line, compiler.makeCommand) == line && line[lenMakeCommand] == ':');
1710                else if(strstr(line, "del") == line);
1711                else if(strstr(line, "rm") == line);
1712                else if(strstr(line, "Could Not Find") == line);
1713                else
1714                {
1715                   ide.outputView.buildBox.Logf(line);
1716                   ide.outputView.buildBox.Logf("\n");
1717                }
1718                wait = false;
1719             }
1720             if(GetTime() - lastTime > 1.0 / PEEK_RESOLUTION) break;
1721          }
1722          if(app.ProcessInput(true))
1723             wait = false;
1724          app.UpdateDisplay();
1725          if(wait)
1726             app.Wait();
1727          //Sleep(1.0 / PEEK_RESOLUTION);
1728       }
1729    }
1730
1731    bool Build(bool isARun, List<ProjectNode> onlyNodes, CompilerConfig compiler, ProjectConfig config, bool justPrint, SingleFileCompileMode mode)
1732    {
1733       bool result = false;
1734       DualPipe f;
1735       char targetFileName[MAX_LOCATION] = "";
1736       DynamicString makeTargets { };
1737       char makeFile[MAX_LOCATION];
1738       char makeFilePath[MAX_LOCATION];
1739       char configName[MAX_LOCATION];
1740       DirExpression objDirExp = GetObjDir(compiler, config);
1741       PathBackup pathBackup { };
1742       bool crossCompiling = (compiler.targetPlatform != GetRuntimePlatform());
1743       char * targetPlatform = crossCompiling ? (char *)compiler.targetPlatform : "";
1744
1745       int numJobs = compiler.numJobs;
1746       char command[MAX_F_STRING];
1747       char * compilerName;
1748
1749       compilerName = CopyString(compiler.name);
1750       CamelCase(compilerName);
1751
1752       strcpy(configName, config ? config.name : "Common");
1753
1754       SetPath(false, compiler, config); //true
1755       CatTargetFileName(targetFileName, compiler, config);
1756
1757       strcpy(makeFilePath, topNode.path);
1758       CatMakeFileName(makeFile, config);
1759       PathCatSlash(makeFilePath, makeFile);
1760
1761       // TODO: TEST ON UNIX IF \" around makeTarget is ok
1762       if(onlyNodes)
1763       {
1764          if(compiler.type.isVC)
1765          {
1766             PrintLn("compiling a single file is not yet supported");
1767          }
1768          else
1769          {
1770             int len;
1771             char pushD[MAX_LOCATION];
1772             char cfDir[MAX_LOCATION];
1773             GetIDECompilerConfigsDir(cfDir, true, true);
1774             GetWorkingDir(pushD, sizeof(pushD));
1775             ChangeWorkingDir(topNode.path);
1776             // Create object dir if it does not exist already
1777             if(!FileExists(objDirExp.dir).isDirectory)
1778             {
1779                sprintf(command, "%s CF_DIR=\"%s\"%s%s COMPILER=%s objdir -C \"%s\"%s -f \"%s\"",
1780                      compiler.makeCommand, cfDir,
1781                      crossCompiling ? " TARGET_PLATFORM=" : "", targetPlatform,
1782                      compilerName, topNode.path, justPrint ? " -n" : "", makeFilePath);
1783                if(justPrint)
1784                   ide.outputView.buildBox.Logf("%s\n", command);
1785                Execute(command);
1786             }
1787
1788             ChangeWorkingDir(pushD);
1789
1790             for(node : onlyNodes)
1791             {
1792                if(node.GetIsExcluded(config))
1793                   ide.outputView.buildBox.Logf($"File %s is excluded from current build configuration.\n", node.name);
1794                else
1795                {
1796                   node.DeleteIntermediateFiles(compiler, config);
1797                   node.GetTargets(config, objDirExp.dir, makeTargets);
1798                }
1799             }
1800          }
1801       }
1802
1803       if(compiler.type.isVC)
1804       {
1805          bool result = false;
1806          char oldwd[MAX_LOCATION];
1807          GetWorkingDir(oldwd, sizeof(oldwd));
1808          ChangeWorkingDir(topNode.path);
1809
1810          // TODO: support justPrint
1811          sprintf(command, "%s /useenv /nologo /logcommands %s.sln %s|Win32", compiler.makeCommand, name, config.name);
1812          if(justPrint)
1813             ide.outputView.buildBox.Logf("%s\n", command);
1814          if((f = DualPipeOpen(PipeOpenMode { output = true, error = true, input = true }, command)))
1815          {
1816             ProcessPipeOutputRaw(f);
1817             delete f;
1818             result = true;
1819          }
1820          ChangeWorkingDir(oldwd);
1821       }
1822       else
1823       {
1824          char cfDir[MAX_LOCATION];
1825          GetIDECompilerConfigsDir(cfDir, true, true);
1826          sprintf(command, "%s %sCF_DIR=\"%s\"%s%s COMPILER=%s -j%d %s%s%s -C \"%s\"%s -f \"%s\"",
1827                compiler.makeCommand,
1828                mode == normal ? "" : (mode == debugPrecompile ? "ECP_DEBUG=y " : mode == debugCompile ? "ECC_DEBUG=y " : mode == debugGenerateSymbols ? "ECS_DEBUG=y " : ""),
1829                cfDir,
1830                crossCompiling ? " TARGET_PLATFORM=" : "", targetPlatform,
1831                compilerName, numJobs,
1832                compiler.ccacheEnabled ? "CCACHE=y " : "",
1833                compiler.distccEnabled ? "DISTCC=y " : "",
1834                (String)makeTargets, topNode.path, (justPrint || mode != normal) ? " -n" : "", makeFilePath);
1835          if(justPrint)
1836             ide.outputView.buildBox.Logf("%s\n", command);
1837          if((f = DualPipeOpen(PipeOpenMode { output = true, error = true, input = true }, command)))
1838          {
1839             bool found = false;
1840             if(justPrint)
1841             {
1842                ProcessPipeOutputRaw(f);
1843                result = true;
1844             }
1845             else if(mode != normal)
1846             {
1847                char line[65536];
1848                while(!f.Eof())
1849                {
1850                   bool result = true;
1851                   while(result)
1852                   {
1853                      if((result = f.Peek()) && (result = f.GetLine(line, sizeof(line)-1)))
1854                      {
1855                         if(!found && strstr(line, "ide ") == line)
1856                         {
1857                            strcpy(command, line);
1858                            found = true;
1859                         }
1860                      }
1861                   }
1862                }
1863             }
1864             else
1865                result = ProcessBuildPipeOutput(f, objDirExp, isARun, onlyNodes, compiler, config);
1866             delete f;
1867             if(found)
1868                Execute(command);
1869          }
1870          else
1871             ide.outputView.buildBox.Logf($"Error executing make (%s) command\n", compiler.makeCommand);
1872       }
1873
1874       delete pathBackup;
1875       delete objDirExp;
1876       delete compilerName;
1877       delete makeTargets;
1878       return result;
1879    }
1880
1881    void Clean(CompilerConfig compiler, ProjectConfig config, bool realclean, bool justPrint)
1882    {
1883       char makeFile[MAX_LOCATION];
1884       char makeFilePath[MAX_LOCATION];
1885       char command[MAX_LOCATION];
1886       char * compilerName;
1887       DualPipe f;
1888       PathBackup pathBackup { };
1889       bool crossCompiling = (compiler.targetPlatform != GetRuntimePlatform());
1890       char * targetPlatform = crossCompiling ? (char *)compiler.targetPlatform : "";
1891
1892       compilerName = CopyString(compiler.name);
1893       CamelCase(compilerName);
1894
1895       SetPath(false, compiler, config);
1896
1897       strcpy(makeFilePath, topNode.path);
1898       CatMakeFileName(makeFile, config);
1899       PathCatSlash(makeFilePath, makeFile);
1900       
1901       if(compiler.type.isVC)
1902       {
1903          bool result = false;
1904          char oldwd[MAX_LOCATION];
1905          GetWorkingDir(oldwd, sizeof(oldwd));
1906          ChangeWorkingDir(topNode.path);
1907          
1908          // TODO: justPrint support
1909          sprintf(command, "%s /useenv /clean /nologo /logcommands %s.sln %s|Win32", compiler.makeCommand, name, config.name);
1910          if(justPrint)
1911             ide.outputView.buildBox.Logf("%s\n", command);
1912          if((f = DualPipeOpen(PipeOpenMode { output = true, error = true, input = true }, command)))
1913          {
1914             ProcessPipeOutputRaw(f);
1915             delete f;
1916             result = true;
1917          }
1918          ChangeWorkingDir(oldwd);
1919          return result;
1920       }
1921       else
1922       {
1923          char cfDir[MAX_LOCATION];
1924          GetIDECompilerConfigsDir(cfDir, true, true);
1925          sprintf(command, "%s CF_DIR=\"%s\"%s%s COMPILER=%s %sclean -C \"%s\"%s -f \"%s\"",
1926                compiler.makeCommand, cfDir,
1927                crossCompiling ? " TARGET_PLATFORM=" : "", targetPlatform,
1928                compilerName, realclean ? "real" : "", topNode.path, justPrint ? " -n": "", makeFilePath);
1929          if(justPrint)
1930             ide.outputView.buildBox.Logf("%s\n", command);
1931          if((f = DualPipeOpen(PipeOpenMode { output = 1, error = 1, input = 2 }, command)))
1932          {
1933             ide.outputView.buildBox.Tell($"Deleting target and object files...");
1934             if(justPrint)
1935                ProcessPipeOutputRaw(f);
1936             else
1937                ProcessCleanPipeOutput(f, compiler, config);
1938             delete f;
1939
1940             ide.outputView.buildBox.Logf($"Target and object files deleted\n");
1941          }
1942       }
1943
1944       delete pathBackup;
1945       delete compilerName;
1946    }
1947
1948    void Run(char * args, CompilerConfig compiler, ProjectConfig config)
1949    {   
1950       String target = new char[maxPathLen];
1951       char oldDirectory[MAX_LOCATION];
1952       DirExpression targetDirExp = GetTargetDir(compiler, config);
1953       PathBackup pathBackup { };
1954
1955       // Build(project, ideMain, true, null, false);
1956
1957    #if defined(__WIN32__)
1958       strcpy(target, topNode.path);
1959    #else
1960       strcpy(target, "");
1961    #endif
1962       PathCatSlash(target, targetDirExp.dir);
1963       CatTargetFileName(target, compiler, config);
1964       sprintf(target, "%s %s", target, args);
1965       GetWorkingDir(oldDirectory, MAX_LOCATION);
1966
1967       if(strlen(ide.workspace.debugDir))
1968       {
1969          char temp[MAX_LOCATION];
1970          strcpy(temp, topNode.path);
1971          PathCatSlash(temp, ide.workspace.debugDir);
1972          ChangeWorkingDir(temp);
1973       }
1974       else
1975          ChangeWorkingDir(topNode.path);
1976       // ChangeWorkingDir(topNode.path);
1977       SetPath(true, compiler, config);
1978       if(compiler.execPrefixCommand)
1979       {
1980          char * prefixedTarget = new char[strlen(compiler.execPrefixCommand) + strlen(target) + 2];
1981          prefixedTarget[0] = '\0';
1982          strcat(prefixedTarget, compiler.execPrefixCommand);
1983          strcat(prefixedTarget, " ");
1984          strcat(prefixedTarget, target);
1985          Execute(prefixedTarget);
1986          delete prefixedTarget;
1987       }
1988       else
1989          Execute(target);
1990
1991       ChangeWorkingDir(oldDirectory);
1992       delete pathBackup;
1993
1994       delete targetDirExp;
1995       delete target;
1996    }
1997
1998    void Compile(List<ProjectNode> nodes, CompilerConfig compiler, ProjectConfig config, bool justPrint, SingleFileCompileMode mode)
1999    {
2000       Build(false, nodes, compiler, config, justPrint, mode);
2001    }
2002 #endif
2003
2004    void GetMakefileTargetFileName(TargetTypes targetType, char * fileName, ProjectConfig config)
2005    {
2006       fileName[0] = '\0';
2007       if(targetType == staticLibrary || targetType == sharedLibrary)
2008          strcat(fileName, "$(LP)");
2009       // !!! ReplaceSpaces must be done after all PathCat calls !!!
2010       // ReplaceSpaces(s, GetTargetFileName(config));
2011       strcat(fileName, GetTargetFileName(config));
2012       switch(targetType)
2013       {
2014          case executable:
2015             strcat(fileName, "$(E)");
2016             break;
2017          case sharedLibrary:
2018             strcat(fileName, "$(SO)");
2019             break;
2020          case staticLibrary:
2021             strcat(fileName, "$(A)");
2022             break;
2023       }
2024    }
2025
2026    bool GenerateCrossPlatformMk()
2027    {
2028       bool result = false;
2029       char path[MAX_LOCATION];
2030
2031       if(!GetProjectCompilerConfigsDir(path, false, false))
2032          GetIDECompilerConfigsDir(path, false, false);
2033
2034       if(!FileExists(path).isDirectory)
2035       {
2036          MakeDir(path);
2037          {
2038             char dirName[MAX_FILENAME];
2039             GetLastDirectory(path, dirName);
2040             if(!strcmp(dirName, ".configs"))
2041                FileSetAttribs(path, FileAttribs { isHidden = true });
2042          }
2043       }
2044       PathCatSlash(path, "crossplatform.mk");
2045
2046       if(FileExists(path))
2047          DeleteFile(path);
2048       {
2049          File include = FileOpen(":crossplatform.mk", read);
2050          if(include)
2051          {
2052             File f = FileOpen(path, write);
2053             if(f)
2054             {
2055                for(; !include.Eof(); )
2056                {
2057                   char buffer[4096];
2058                   int count = include.Read(buffer, 1, 4096);
2059                   f.Write(buffer, 1, count);
2060                }
2061                delete f;
2062
2063                result = true;
2064             }
2065             delete include;
2066          }
2067       }
2068       return result;
2069    }
2070
2071    bool GenerateCompilerCf(CompilerConfig compiler)
2072    {
2073       bool result = false;
2074       char path[MAX_LOCATION];
2075       char * name;
2076       char * compilerName;
2077       bool gccCompiler = compiler.ccCommand && (strstr(compiler.ccCommand, "gcc") != null || strstr(compiler.ccCommand, "g++") != null);
2078       Platform platform = compiler.targetPlatform;
2079
2080       compilerName = CopyString(compiler.name);
2081       CamelCase(compilerName);
2082       name = PrintString(platform, "-", compilerName, ".cf");
2083
2084       if(!GetProjectCompilerConfigsDir(path, false, false))
2085          GetIDECompilerConfigsDir(path, false, false);
2086
2087       if(!FileExists(path).isDirectory)
2088       {
2089          MakeDir(path);
2090          {
2091             char dirName[MAX_FILENAME];
2092             GetLastDirectory(path, dirName);
2093             if(!strcmp(dirName, ".configs"))
2094                FileSetAttribs(path, FileAttribs { isHidden = true });
2095          }
2096       }
2097       PathCatSlash(path, name);
2098
2099       if(FileExists(path))
2100          DeleteFile(path);
2101       {
2102          File f = FileOpen(path, write);
2103          if(f)
2104          {
2105             if(compiler.environmentVars && compiler.environmentVars.count)
2106             {
2107                f.Puts("# ENVIRONMENT VARIABLES\n");
2108                f.Puts("\n");
2109                for(e : compiler.environmentVars)
2110                {
2111                   f.Printf("export %s := %s\n", e.name, e.string);
2112                }
2113             }
2114
2115             f.Puts("# TOOLCHAIN\n");
2116             f.Puts("\n");
2117
2118             if(compiler.gccPrefix && compiler.gccPrefix[0])
2119             {
2120                f.Printf("GCC_PREFIX := %s\n", compiler.gccPrefix);
2121                f.Puts("\n");
2122             }
2123             if(compiler.sysroot && compiler.sysroot[0])
2124             {
2125                f.Printf("SYSROOT := %s\n", compiler.sysroot);
2126                // Moved this to crossplatform.mk
2127                //f.Puts("_SYSROOT := $(space)--sysroot=$(SYSROOT)\n");
2128                f.Puts("\n");
2129             }
2130
2131             //f.Printf("SHELL := %s\n", "sh"/*compiler.shellCommand*/); // is this really needed?
2132             f.Printf("CPP := $(CCACHE_COMPILE)$(DISTCC_COMPILE)$(GCC_PREFIX)%s$(_SYSROOT)\n", compiler.cppCommand);
2133             f.Printf("CC := $(CCACHE_COMPILE)$(DISTCC_COMPILE)$(GCC_PREFIX)%s$(_SYSROOT)\n", compiler.ccCommand);
2134             f.Printf("CXX := $(CCACHE_COMPILE)$(DISTCC_COMPILE)$(GCC_PREFIX)%s$(_SYSROOT)\n", compiler.cxxCommand);
2135             f.Printf("ECP := $(if $(ECP_DEBUG),ide -debug-start $(ECERE_SDK_SRC)/compiler/ecp/ecp.epj -@,%s)\n", compiler.ecpCommand);
2136             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);
2137             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);
2138             f.Printf("EAR := %s\n", compiler.earCommand);
2139
2140             f.Puts("AS := $(GCC_PREFIX)as\n");
2141             f.Puts("LD := $(GCC_PREFIX)ld\n");
2142             f.Puts("AR := $(GCC_PREFIX)ar\n");
2143             f.Puts("STRIP := $(GCC_PREFIX)strip\n");
2144             f.Puts("UPX := upx\n");
2145             f.Puts("\n");
2146
2147             f.Puts("UPXFLAGS = -9\n"); // TOFEAT: Compression Level Option? Other UPX Options?
2148             f.Puts("\n");
2149
2150             f.Puts("EARFLAGS = \n");
2151             f.Puts("\n");
2152
2153             f.Puts("# HARD CODED TARGET_PLATFORM-SPECIFIC OPTIONS\n");
2154             f.Printf("LDFLAGS +=$(if $(%s), -Wl$(comma)--no-undefined,)\n", PlatformToMakefileTargetVariable(tux));
2155             f.Puts("\n");
2156
2157             // JF's
2158             f.Printf("LDFLAGS +=$(if $(%s), -framework cocoa -framework OpenGL,)\n", PlatformToMakefileTargetVariable(apple));
2159
2160             if(gccCompiler)
2161             {
2162                f.Puts("\nCFLAGS += -fmessage-length=0\n");
2163             }
2164
2165             if(compiler.includeDirs && compiler.includeDirs.count)
2166             {
2167                f.Puts("\nCFLAGS +=");
2168                OutputListOption(f, gccCompiler ? "isystem " : "I", compiler.includeDirs, lineEach, true);
2169                f.Puts("\n");
2170             }
2171             if(compiler.prepDirectives && compiler.prepDirectives.count)
2172             {
2173                f.Puts("\nCFLAGS +=");
2174                OutputListOption(f, "D", compiler.prepDirectives, inPlace, true);
2175                f.Puts("\n");
2176             }
2177             if(compiler.libraryDirs && compiler.libraryDirs.count)
2178             {
2179                f.Puts("\nLDFLAGS +=");
2180                OutputListOption(f, "L", compiler.libraryDirs, lineEach, true);
2181                // We would need a bool option to know whether we want to add to rpath as well...
2182                // OutputListOption(f, "Wl,-rpath ", compiler.libraryDirs, lineEach, true);
2183                f.Puts("\n");
2184             }
2185             if(compiler.excludeLibs && compiler.excludeLibs.count)
2186             {
2187                f.Puts("\nEXCLUDED_LIBS =");
2188                for(l : compiler.excludeLibs)
2189                {
2190                   f.Puts(" ");
2191                   f.Puts(l);
2192                }
2193             }
2194             if(compiler.linkerFlags && compiler.linkerFlags.count)
2195             {
2196                f.Puts("\nLDFLAGS +=");
2197                OutputListOption(f, "Wl,", compiler.linkerFlags, inPlace, true);
2198                f.Puts("\n");
2199             }
2200             f.Printf("\nFORCE_64_BIT := %s", compiler.supportsBitDepth ? "-m64" : "");
2201             f.Printf("\nFORCE_32_BIT := %s", compiler.supportsBitDepth ? "-m32" : "");
2202             f.Puts("\n");
2203             f.Puts("\nOFLAGS += $(LDFLAGS)");
2204             f.Puts("\n");
2205
2206             delete f;
2207
2208             result = true;
2209          }
2210       }
2211       delete name;
2212       delete compilerName;
2213       return result;
2214    }
2215
2216    bool GenerateMakefile(char * altMakefilePath, bool noResources, char * includemkPath, ProjectConfig config)
2217    {
2218       bool result = false;
2219       char filePath[MAX_LOCATION];
2220       char makeFile[MAX_LOCATION];
2221       // PathBackup pathBackup { };
2222       // char oldDirectory[MAX_LOCATION];
2223       File f = null;
2224
2225       if(!altMakefilePath)
2226       {
2227          strcpy(filePath, topNode.path);
2228          CatMakeFileName(makeFile, config);
2229          PathCatSlash(filePath, makeFile);
2230       }
2231
2232       f = FileOpen(altMakefilePath ? altMakefilePath : filePath, write);
2233
2234       /*SetPath(false, compiler, config);
2235       GetWorkingDir(oldDirectory, MAX_LOCATION);
2236       ChangeWorkingDir(topNode.path);*/
2237
2238       if(f)
2239       {
2240          bool test;
2241          int ifCount;
2242          Platform platform;
2243          char targetDir[MAX_LOCATION];
2244          char objDirExpNoSpaces[MAX_LOCATION];
2245          char objDirNoSpaces[MAX_LOCATION];
2246          char resDirNoSpaces[MAX_LOCATION];
2247          char targetDirExpNoSpaces[MAX_LOCATION];
2248          char fixedModuleName[MAX_FILENAME];
2249          char fixedConfigName[MAX_FILENAME];
2250          int c, len;
2251          // Non-zero if we're building eC code
2252          // We'll have to be careful with this when merging configs where eC files can be excluded in some configs and included in others
2253          int numCObjects = 0;
2254          int numObjects = 0;
2255          bool containsCXX = false; // True if the project contains a C++ file
2256          bool sameObjTargetDirs;
2257          String objDirExp = GetObjDirExpression(config);
2258          TargetTypes targetType = GetTargetType(config);
2259
2260          char cfDir[MAX_LOCATION];
2261          int objectsParts = 0, eCsourcesParts = 0;
2262          Array<String> listItems { };
2263          Map<String, int> varStringLenDiffs { };
2264          Map<String, NameCollisionInfo> namesInfo { };
2265          bool forceBitDepth = false;
2266
2267          Map<String, int> cflagsVariations { };
2268          Map<int, int> nodeCFlagsMapping { };
2269
2270          Map<String, int> ecflagsVariations { };
2271          Map<int, int> nodeECFlagsMapping { };
2272
2273          ReplaceSpaces(objDirNoSpaces, objDirExp);
2274          strcpy(targetDir, GetTargetDirExpression(config));
2275          ReplaceSpaces(targetDirExpNoSpaces, targetDir);
2276
2277          strcpy(objDirExpNoSpaces, GetObjDirExpression(config));
2278          ChangeCh(objDirExpNoSpaces, '\\', '/'); // TODO: this is a hack, paths should never include win32 path seperators - fix this in ProjectSettings and ProjectLoad instead
2279          ReplaceSpaces(objDirExpNoSpaces, objDirExpNoSpaces);
2280          ReplaceSpaces(resDirNoSpaces, resNode.path ? resNode.path : "");
2281          ReplaceSpaces(fixedModuleName, moduleName);
2282          ReplaceSpaces(fixedConfigName, GetConfigName(config));
2283          CamelCase(fixedConfigName);
2284
2285          sameObjTargetDirs = !fstrcmp(objDirExpNoSpaces, targetDirExpNoSpaces);
2286
2287          f.Printf(".PHONY: all objdir%s cleantarget clean realclean distclean\n\n", sameObjTargetDirs ? "" : " targetdir");
2288
2289          f.Puts("# CORE VARIABLES\n\n");
2290
2291          f.Printf("MODULE := %s\n", fixedModuleName);
2292          //f.Printf("VERSION = %s\n", version);
2293          f.Printf("CONFIG := %s\n", fixedConfigName);
2294          f.Puts("ifndef COMPILER\n" "COMPILER := default\n" "endif\n");
2295          f.Puts("\n");
2296
2297          test = GetTargetTypeIsSetByPlatform(config);
2298          if(test)
2299          {
2300             ifCount = 0;
2301             for(platform = (Platform)1; platform < Platform::enumSize; platform++)
2302             {
2303                TargetTypes targetType;
2304                PlatformOptions projectPOs, configPOs;
2305                MatchProjectAndConfigPlatformOptions(config, platform, &projectPOs, &configPOs);
2306                targetType = platformTargetType;
2307                if(targetType)
2308                {
2309                   if(ifCount)
2310                      f.Puts("else\n");
2311                   ifCount++;
2312                   f.Printf("ifdef %s\n", PlatformToMakefileTargetVariable(platform));
2313                   f.Printf("TARGET_TYPE = %s\n", TargetTypeToMakefileVariable(targetType));
2314                }
2315             }
2316             f.Puts("else\n");
2317          }
2318          f.Printf("TARGET_TYPE = %s\n", TargetTypeToMakefileVariable(targetType));
2319          if(test)
2320          {
2321             if(ifCount)
2322             {
2323                for(c = 0; c < ifCount; c++)
2324                   f.Puts("endif\n");
2325             }
2326          }
2327          f.Puts("\n");
2328
2329          f.Puts("# FLAGS\n\n");
2330
2331          f.Puts("ECFLAGS =\n");
2332          f.Puts("ifndef DEBIAN_PACKAGE\n" "CFLAGS =\n" "LDFLAGS =\n" "endif\n");
2333          f.Puts("PRJ_CFLAGS =\n");
2334          f.Puts("CECFLAGS =\n");
2335          f.Puts("OFLAGS =\n");
2336          f.Puts("LIBS =\n");
2337          f.Puts("\n");
2338
2339          f.Puts("ifdef DEBUG\n" "NOSTRIP := y\n" "endif\n");
2340          f.Puts("\n");
2341
2342          // Important: We cannot use this ifdef anymore, EXECUTABLE_TARGET is not yet defined. It's embedded in the crossplatform.mk EXECUTABLE
2343          //f.Puts("ifdef EXECUTABLE_TARGET\n");
2344          f.Printf("CONSOLE = %s\n", GetConsole(config) ? "-mconsole" : "-mwindows");
2345          //f.Puts("endif\n");
2346          f.Puts("\n");
2347
2348          f.Puts("# INCLUDES\n\n");
2349
2350          if(compilerConfigsDir && compilerConfigsDir[0])
2351          {
2352             strcpy(cfDir, compilerConfigsDir);
2353             if(cfDir && cfDir[0] && cfDir[strlen(cfDir)-1] != '/')
2354                strcat(cfDir, "/");
2355          }
2356          else
2357          {
2358             GetIDECompilerConfigsDir(cfDir, true, true);
2359             // Use CF_DIR environment variable for absolute paths only
2360             if(cfDir[0] == '/' || (cfDir[0] && cfDir[1] == ':'))
2361                strcpy(cfDir, "$(CF_DIR)");
2362          }
2363
2364          f.Printf("_CF_DIR = %s\n", cfDir);
2365          f.Puts("\n");
2366
2367          f.Printf("include %s\n", includemkPath ? includemkPath : "$(_CF_DIR)crossplatform.mk");
2368          f.Puts("include $(_CF_DIR)$(TARGET_PLATFORM)-$(COMPILER).cf\n");
2369          f.Puts("\n");
2370
2371          f.Puts("# POST-INCLUDES VARIABLES\n\n");
2372
2373          f.Printf("OBJ = %s%s\n", objDirExpNoSpaces, objDirExpNoSpaces[0] ? "/" : "");
2374          f.Puts("\n");
2375
2376          f.Printf("RES = %s%s\n", resDirNoSpaces, resDirNoSpaces[0] ? "/" : "");
2377          f.Puts("\n");
2378
2379          // test = GetTargetTypeIsSetByPlatform(config);
2380          {
2381             char target[MAX_LOCATION];
2382             char targetNoSpaces[MAX_LOCATION];
2383             if(test)
2384             {
2385                TargetTypes type;
2386                ifCount = 0;
2387                for(type = (TargetTypes)1; type < TargetTypes::enumSize; type++)
2388                {
2389                   if(type != targetType)
2390                   {
2391                      if(ifCount)
2392                         f.Puts("else\n");
2393                      ifCount++;
2394                      f.Printf("ifeq \"$(TARGET_TYPE)\" \"%s\"\n", TargetTypeToMakefileVariable(type));
2395
2396                      GetMakefileTargetFileName(type, target, config);
2397                      strcpy(targetNoSpaces, targetDir);
2398                      PathCatSlash(targetNoSpaces, target);
2399                      ReplaceSpaces(targetNoSpaces, targetNoSpaces);
2400                      f.Printf("TARGET = %s\n", targetNoSpaces);
2401                   }
2402                }
2403                f.Puts("else\n");
2404             }
2405             GetMakefileTargetFileName(targetType, target, config);
2406             strcpy(targetNoSpaces, targetDir);
2407             PathCatSlash(targetNoSpaces, target);
2408             ReplaceSpaces(targetNoSpaces, targetNoSpaces);
2409             f.Printf("TARGET = %s\n", targetNoSpaces);
2410
2411             if(test)
2412             {
2413                if(ifCount)
2414                {
2415                   for(c = 0; c < ifCount; c++)
2416                      f.Puts("endif\n");
2417                }
2418             }
2419          }
2420          f.Puts("\n");
2421
2422          // Use something fixed here, to not cause Makefile differences across compilers...
2423          varStringLenDiffs["$(OBJ)"] = 30; // strlen("obj/memoryGuard.android.gcc-4.6.2") - 6;
2424          // varStringLenDiffs["$(OBJ)"] = strlen(objDirNoSpaces) - 6;
2425
2426          topNode.GenMakefileGetNameCollisionInfo(namesInfo, config);
2427
2428          {
2429             int c;
2430             char * map[5][2] = { { "COBJECTS", "C" }, { "SYMBOLS", "S" }, { "IMPORTS", "I" }, { "ECOBJECTS", "O" }, { "BOWLS", "B" } };
2431
2432             numCObjects = topNode.GenMakefilePrintNode(f, this, eCsources, namesInfo, listItems, config, null);
2433             if(numCObjects)
2434             {
2435                eCsourcesParts = OutputFileList(f, "_ECSOURCES", listItems, varStringLenDiffs, null);
2436
2437                f.Puts("ECSOURCES = $(call shwspace,$(_ECSOURCES))\n");
2438                if(eCsourcesParts > 1)
2439                {
2440                   for(c = 1; c <= eCsourcesParts; c++)
2441                      f.Printf("ECSOURCES%d = $(call shwspace,$(_ECSOURCES%d))\n", c, c);
2442                }
2443                f.Puts("\n");
2444
2445                for(c = 0; c < 5; c++)
2446                {
2447                   if(eCsourcesParts > 1)
2448                   {
2449                      int n;
2450                      f.Printf("%s =", map[c][0]);
2451                      for(n = 1; n <= eCsourcesParts; n++)
2452                         f.Printf(" $(%s%d)", map[c][0], n);
2453                      f.Puts("\n");
2454                      for(n = 1; n <= eCsourcesParts; n++)
2455                         f.Printf("%s%d = $(call shwspace,$(addprefix $(OBJ),$(patsubst %%.ec,%%$(%s),$(notdir $(_ECSOURCES%d)))))\n", map[c][0], n, map[c][1], n);
2456                   }
2457                   else if(eCsourcesParts == 1)
2458                      f.Printf("%s = $(call shwspace,$(addprefix $(OBJ),$(patsubst %%.ec,%%$(%s),$(notdir $(_ECSOURCES)))))\n", map[c][0], map[c][1]);
2459                   f.Puts("\n");
2460                }
2461             }
2462          }
2463
2464          numObjects = topNode.GenMakefilePrintNode(f, this, objects, namesInfo, listItems, config, &containsCXX);
2465          if(numObjects)
2466             objectsParts = OutputFileList(f, "_OBJECTS", listItems, varStringLenDiffs, null);
2467          f.Printf("OBJECTS =%s%s%s\n", numObjects ? " $(_OBJECTS)" : "", numCObjects ? " $(ECOBJECTS)" : "", numCObjects ? " $(OBJ)$(MODULE).main$(O)" : "");
2468          f.Puts("\n");
2469
2470          topNode.GenMakefilePrintNode(f, this, sources, null, listItems, config, null);
2471          OutputFileList(f, "SOURCES", listItems, varStringLenDiffs, numCObjects ? "$(ECSOURCES)" : null);
2472
2473          if(!noResources)
2474             resNode.GenMakefilePrintNode(f, this, resources, null, listItems, config, null);
2475          OutputFileList(f, "RESOURCES", listItems, varStringLenDiffs, null);
2476
2477          f.Puts("LIBS += $(SHAREDLIB) $(EXECUTABLE) $(LINKOPT)\n");
2478          f.Puts("\n");
2479          if((config && config.options && config.options.libraries) ||
2480                (options && options.libraries))
2481          {
2482             f.Puts("ifndef STATIC_LIBRARY_TARGET\n");
2483             f.Puts("LIBS +=");
2484             if(config && config.options && config.options.libraries)
2485                OutputLibraries(f, config.options.libraries);
2486             else if(options && options.libraries)
2487                OutputLibraries(f, options.libraries);
2488             f.Puts("\n");
2489             f.Puts("endif\n");
2490             f.Puts("\n");
2491          }
2492
2493          topNode.GenMakeCollectAssignNodeFlags(config, numCObjects,
2494                cflagsVariations, nodeCFlagsMapping,
2495                ecflagsVariations, nodeECFlagsMapping, null);
2496
2497          GenMakePrintCustomFlags(f, "PRJ_CFLAGS", false, cflagsVariations);
2498          GenMakePrintCustomFlags(f, "ECFLAGS", true, ecflagsVariations);
2499
2500          if(platforms || (config && config.platforms))
2501          {
2502             ifCount = 0;
2503             //for(platform = firstPlatform; platform <= lastPlatform; platform++)
2504             //for(platform = win32; platform <= apple; platform++)
2505
2506             f.Puts("# PLATFORM-SPECIFIC OPTIONS\n\n");
2507             for(platform = (Platform)1; platform < Platform::enumSize; platform++)
2508             {
2509                PlatformOptions projectPlatformOptions, configPlatformOptions;
2510                MatchProjectAndConfigPlatformOptions(config, platform, &projectPlatformOptions, &configPlatformOptions);
2511
2512                if(projectPlatformOptions || configPlatformOptions)
2513                {
2514                   if(ifCount)
2515                      f.Puts("else\n");
2516                   ifCount++;
2517                   f.Printf("ifdef %s\n", PlatformToMakefileTargetVariable(platform));
2518                   f.Puts("\n");
2519
2520                   if((projectPlatformOptions && projectPlatformOptions.options.linkerOptions && projectPlatformOptions.options.linkerOptions.count) ||
2521                      (configPlatformOptions && configPlatformOptions.options.linkerOptions && configPlatformOptions.options.linkerOptions.count))
2522                   {
2523                      f.Puts("OFLAGS +=");
2524                      if(projectPlatformOptions && projectPlatformOptions.options.linkerOptions && projectPlatformOptions.options.linkerOptions.count)
2525                      {
2526                         bool needWl = false;
2527                         f.Puts(" \\\n\t ");
2528                         for(s : projectPlatformOptions.options.linkerOptions)
2529                         {
2530                            if(!IsLinkerOption(s))
2531                               f.Printf(" %s", s);
2532                            else
2533                               needWl = true;
2534                         }
2535                         if(needWl)
2536                         {
2537                            f.Puts(" -Wl");
2538                            for(s : projectPlatformOptions.options.linkerOptions)
2539                               if(IsLinkerOption(s))
2540                                  f.Printf(",%s", s);
2541                         }
2542                      }
2543                      if(configPlatformOptions && configPlatformOptions.options.linkerOptions && configPlatformOptions.options.linkerOptions.count)
2544                      {
2545                         bool needWl = false;
2546                         f.Puts(" \\\n\t ");
2547                         for(s : configPlatformOptions.options.linkerOptions)
2548                         {
2549                            if(IsLinkerOption(s))
2550                               f.Printf(" %s", s);
2551                            else
2552                               needWl = true;
2553                         }
2554                         if(needWl)
2555                         {
2556                            f.Puts(" -Wl");
2557                            for(s : configPlatformOptions.options.linkerOptions)
2558                               if(!IsLinkerOption(s))
2559                                  f.Printf(",%s", s);
2560                         }
2561                      }
2562                      f.Puts("\n");
2563                      f.Puts("\n");
2564                   }
2565
2566                   if((projectPlatformOptions && projectPlatformOptions.options.libraryDirs && projectPlatformOptions.options.libraryDirs.count) ||
2567                         (configPlatformOptions && configPlatformOptions.options.libraryDirs && configPlatformOptions.options.libraryDirs.count) ||
2568                         (projectPlatformOptions && projectPlatformOptions.options.libraries && projectPlatformOptions.options.libraries.count) ||
2569                         (configPlatformOptions && configPlatformOptions.options.libraries && configPlatformOptions.options.libraries.count))
2570                   {
2571                      f.Puts("ifndef STATIC_LIBRARY_TARGET\n");
2572                      if((projectPlatformOptions && projectPlatformOptions.options.libraryDirs && projectPlatformOptions.options.libraryDirs.count) ||
2573                         (configPlatformOptions && configPlatformOptions.options.libraryDirs && configPlatformOptions.options.libraryDirs.count))
2574                      {
2575                         f.Puts("OFLAGS +=");
2576                         if(configPlatformOptions && configPlatformOptions.options.libraryDirs)
2577                            OutputListOption(f, "L", configPlatformOptions.options.libraryDirs, lineEach, true);
2578                         if(projectPlatformOptions && projectPlatformOptions.options.libraryDirs)
2579                            OutputListOption(f, "L", projectPlatformOptions.options.libraryDirs, lineEach, true);
2580                         f.Puts("\n");
2581                      }
2582
2583                      if((configPlatformOptions && configPlatformOptions.options.libraries))
2584                      {
2585                         if(configPlatformOptions.options.libraries.count)
2586                         {
2587                            f.Puts("LIBS +=");
2588                            OutputLibraries(f, configPlatformOptions.options.libraries);
2589                            f.Puts("\n");
2590                         }
2591                      }
2592                      else if(projectPlatformOptions && projectPlatformOptions.options.libraries)
2593                      {
2594                         if(projectPlatformOptions.options.libraries.count)
2595                         {
2596                            f.Puts("LIBS +=");
2597                            OutputLibraries(f, projectPlatformOptions.options.libraries);
2598                            f.Puts("\n");
2599                         }
2600                      }
2601                      f.Puts("endif\n");
2602                      f.Puts("\n");
2603                   }
2604                }
2605             }
2606             if(ifCount)
2607             {
2608                for(c = 0; c < ifCount; c++)
2609                   f.Puts("endif\n");
2610             }
2611             f.Puts("\n");
2612          }
2613
2614          if((config && config.options && config.options.linkerOptions && config.options.linkerOptions.count) ||
2615                (options && options.linkerOptions && options.linkerOptions.count))
2616          {
2617             f.Puts("OFLAGS +=");
2618             f.Puts(" \\\n\t");
2619
2620             if(config && config.options && config.options.linkerOptions && config.options.linkerOptions.count)
2621             {
2622                bool needWl = false;
2623                for(s : config.options.linkerOptions)
2624                {
2625                   if(!IsLinkerOption(s))
2626                      f.Printf(" %s", s);
2627                   else
2628                      needWl = true;
2629                }
2630                if(needWl)
2631                {
2632                   f.Puts(" -Wl");
2633                   for(s : config.options.linkerOptions)
2634                      if(IsLinkerOption(s))
2635                         f.Printf(",%s", s);
2636                }
2637             }
2638             if(options && options.linkerOptions && options.linkerOptions.count)
2639             {
2640                bool needWl = false;
2641                for(s : options.linkerOptions)
2642                {
2643                   if(!IsLinkerOption(s))
2644                      f.Printf(" %s", s);
2645                   else
2646                      needWl = true;
2647                }
2648                if(needWl)
2649                {
2650                   f.Puts(" -Wl");
2651                   for(s : options.linkerOptions)
2652                      if(IsLinkerOption(s))
2653                         f.Printf(",%s", s);
2654                }
2655             }
2656          }
2657          f.Puts("\n");
2658          f.Puts("\n");
2659
2660          f.Puts("CECFLAGS += -cpp $(_CPP)");
2661          f.Puts("\n");
2662          f.Puts("\n");
2663
2664          forceBitDepth = (options && options.buildBitDepth) || numCObjects;
2665          if(forceBitDepth || GetProfile(config))
2666          {
2667             f.Puts("OFLAGS +=");
2668             if(forceBitDepth)
2669                f.Puts((!options || !options.buildBitDepth || options.buildBitDepth == bits32) ? " $(FORCE_32_BIT)" : " $(FORCE_64_BIT)");
2670             if(GetProfile(config))
2671                f.Puts(" -pg");
2672             f.Puts("\n");
2673             f.Puts("\n");
2674          }
2675
2676          if((config && config.options && config.options.libraryDirs) || (options && options.libraryDirs))
2677          {
2678             f.Puts("ifndef STATIC_LIBRARY_TARGET\n");
2679             f.Puts("OFLAGS +=");
2680             if(config && config.options && config.options.libraryDirs)
2681                OutputListOption(f, "L", config.options.libraryDirs, lineEach, true);
2682             if(options && options.libraryDirs)
2683                OutputListOption(f, "L", options.libraryDirs, lineEach, true);
2684             f.Puts("\n");
2685             f.Puts("endif\n");
2686             f.Puts("\n");
2687          }
2688
2689          f.Puts("# TARGETS\n");
2690          f.Puts("\n");
2691
2692          f.Printf("all: objdir%s $(TARGET)\n", sameObjTargetDirs ? "" : " targetdir");
2693          f.Puts("\n");
2694
2695          f.Puts("objdir:\n");
2696             f.Puts("\t$(if $(wildcard $(OBJ)),,$(call mkdirq,$(OBJ)))\n");
2697          //f.Puts("# PRE-BUILD COMMANDS\n");
2698          if(options && options.prebuildCommands)
2699          {
2700             for(s : options.prebuildCommands)
2701                if(s && s[0]) f.Printf("\t%s\n", s);
2702          }
2703          if(config && config.options && config.options.prebuildCommands)
2704          {
2705             for(s : config.options.prebuildCommands)
2706                if(s && s[0]) f.Printf("\t%s\n", s);
2707          }
2708          if(platforms || (config && config.platforms))
2709          {
2710             ifCount = 0;
2711             //f.Puts("# TARGET_PLATFORM-SPECIFIC PRE-BUILD COMMANDS\n");
2712             for(platform = (Platform)1; platform < Platform::enumSize; platform++)
2713             {
2714                PlatformOptions projectPOs, configPOs;
2715                MatchProjectAndConfigPlatformOptions(config, platform, &projectPOs, &configPOs);
2716
2717                if((projectPOs && projectPOs.options.prebuildCommands && projectPOs.options.prebuildCommands.count) ||
2718                      (configPOs && configPOs.options.prebuildCommands && configPOs.options.prebuildCommands.count))
2719                {
2720                   if(ifCount)
2721                      f.Puts("else\n");
2722                   ifCount++;
2723                   f.Printf("ifdef %s\n", PlatformToMakefileTargetVariable(platform));
2724
2725                   if(projectPOs && projectPOs.options.prebuildCommands && projectPOs.options.prebuildCommands.count)
2726                   {
2727                      for(s : projectPOs.options.prebuildCommands)
2728                         if(s && s[0]) f.Printf("\t%s\n", s);
2729                   }
2730                   if(configPOs && configPOs.options.prebuildCommands && configPOs.options.prebuildCommands.count)
2731                   {
2732                      for(s : configPOs.options.prebuildCommands)
2733                         if(s && s[0]) f.Printf("\t%s\n", s);
2734                   }
2735                }
2736             }
2737             if(ifCount)
2738             {
2739                int c;
2740                for(c = 0; c < ifCount; c++)
2741                   f.Puts("endif\n");
2742             }
2743          }
2744          f.Puts("\n");
2745
2746          if(!sameObjTargetDirs)
2747          {
2748             f.Puts("targetdir:\n");
2749                f.Printf("\t$(if $(wildcard %s),,$(call mkdirq,%s))\n", targetDirExpNoSpaces, targetDirExpNoSpaces);
2750             f.Puts("\n");
2751          }
2752
2753          if(numCObjects)
2754          {
2755             // Main Module (Linking) for ECERE C modules
2756             f.Puts("$(OBJ)$(MODULE).main.ec: $(SYMBOLS) $(COBJECTS)\n");
2757             // use of objDirExpNoSpaces used instead of $(OBJ) to prevent problematic joining of arguments in ecs
2758             f.Printf("\t$(ECS)%s $(FORCE_32_BIT) $(ECSLIBOPT) $(SYMBOLS) $(IMPORTS) -symbols %s -o $(OBJ)$(MODULE).main.ec\n", 
2759                GetConsole(config) ? " -console" : "", objDirExpNoSpaces);
2760             f.Puts("\n");
2761             // Main Module (Linking) for ECERE C modules
2762             f.Puts("$(OBJ)$(MODULE).main.c: $(OBJ)$(MODULE).main.ec\n");
2763             f.Puts("\t$(ECP) $(CFLAGS) $(CECFLAGS) $(ECFLAGS) $(PRJ_CFLAGS)"
2764                   " -c $(OBJ)$(MODULE).main.ec -o $(OBJ)$(MODULE).main.sym -symbols $(OBJ)\n");
2765             f.Puts("\t$(ECC) $(CFLAGS) $(CECFLAGS) $(ECFLAGS) $(PRJ_CFLAGS) $(FVISIBILITY)"
2766                   " -c $(OBJ)$(MODULE).main.ec -o $(OBJ)$(MODULE).main.c -symbols $(OBJ)\n");
2767             f.Puts("\n");
2768          }
2769
2770          // *** Target ***
2771
2772          // This would not rebuild the target on updated objects
2773          // f.Printf("$(TARGET): $(SOURCES) $(RESOURCES) | objdir $(SYMBOLS) $(OBJECTS)%s\n", sameObjTargetDirs ? "" : " targetdir");
2774
2775          // This should fix it for good!
2776          f.Puts("$(SYMBOLS): | objdir\n");
2777          f.Puts("$(OBJECTS): | objdir\n");
2778
2779          // This alone was breaking the tarball, object directory does not get created first (order-only rules happen last it seems!)
2780          f.Printf("$(TARGET): $(SOURCES) $(RESOURCES) $(SYMBOLS) $(OBJECTS) | objdir%s\n", sameObjTargetDirs ? "" : " targetdir");
2781
2782          f.Puts("ifndef STATIC_LIBRARY_TARGET\n");
2783          f.Printf("\t$(%s) $(OFLAGS) $(OBJECTS) $(LIBS) %s-o $(TARGET) $(INSTALLNAME)\n", containsCXX ? "CXX" : "CC", containsCXX ? "-lstdc++ " : "");
2784          if(!GetDebug(config))
2785          {
2786             f.Puts("ifndef NOSTRIP\n");
2787             f.Puts("\t$(STRIP) $(STRIPOPT) $(TARGET)\n");
2788             f.Puts("endif\n");
2789
2790             if(GetCompress(config))
2791             {
2792                f.Printf("ifndef %s\n", PlatformToMakefileTargetVariable(win32));
2793                f.Puts("ifdef EXECUTABLE_TARGET\n");
2794                   f.Puts("\t$(UPX) $(UPXFLAGS) $(TARGET)\n");
2795                f.Puts("endif\n");
2796                f.Puts("else\n");
2797                   f.Puts("\t$(UPX) $(UPXFLAGS) $(TARGET)\n");
2798                f.Puts("endif\n");
2799             }
2800          }
2801          if(resNode.files && resNode.files.count && !noResources)
2802             resNode.GenMakefileAddResources(f, resNode.path, config);
2803          f.Puts("else\n");
2804          f.Puts("\t$(AR) rcs $(TARGET) $(OBJECTS) $(LIBS)\n");
2805          f.Puts("endif\n");
2806
2807          //f.Puts("# POST-BUILD COMMANDS\n");
2808          if(options && options.postbuildCommands)
2809          {
2810             for(s : options.postbuildCommands)
2811                if(s && s[0]) f.Printf("\t%s\n", s);
2812          }
2813          if(config && config.options && config.options.postbuildCommands)
2814          {
2815             for(s : config.options.postbuildCommands)
2816                if(s && s[0]) f.Printf("\t%s\n", s);
2817          }
2818          if(platforms || (config && config.platforms))
2819          {
2820             ifCount = 0;
2821             //f.Puts("# TARGET_PLATFORM-SPECIFIC POST-BUILD COMMANDS\n");
2822             for(platform = (Platform)1; platform < Platform::enumSize; platform++)
2823             {
2824                PlatformOptions projectPOs, configPOs;
2825                MatchProjectAndConfigPlatformOptions(config, platform, &projectPOs, &configPOs);
2826
2827                if((projectPOs && projectPOs.options.postbuildCommands && projectPOs.options.postbuildCommands.count) ||
2828                      (configPOs && configPOs.options.postbuildCommands && configPOs.options.postbuildCommands.count))
2829                {
2830                   if(ifCount)
2831                      f.Puts("else\n");
2832                   ifCount++;
2833                   f.Printf("ifdef %s\n", PlatformToMakefileTargetVariable(platform));
2834
2835                   if(projectPOs && projectPOs.options.postbuildCommands && projectPOs.options.postbuildCommands.count)
2836                   {
2837                      for(s : projectPOs.options.postbuildCommands)
2838                         if(s && s[0]) f.Printf("\t%s\n", s);
2839                   }
2840                   if(configPOs && configPOs.options.postbuildCommands && configPOs.options.postbuildCommands.count)
2841                   {
2842                      for(s : configPOs.options.postbuildCommands)
2843                         if(s && s[0]) f.Printf("\t%s\n", s);
2844                   }
2845                }
2846             }
2847             if(ifCount)
2848             {
2849                int c;
2850                for(c = 0; c < ifCount; c++)
2851                   f.Puts("endif\n");
2852             }
2853          }
2854          f.Puts("\n");
2855
2856          f.Puts("# SYMBOL RULES\n");
2857          f.Puts("\n");
2858
2859          topNode.GenMakefilePrintSymbolRules(f, this, config, nodeCFlagsMapping, nodeECFlagsMapping);
2860
2861          f.Puts("# C OBJECT RULES\n");
2862          f.Puts("\n");
2863
2864          topNode.GenMakefilePrintCObjectRules(f, this, config, nodeCFlagsMapping, nodeECFlagsMapping);
2865
2866          f.Puts("# OBJECT RULES\n");
2867          f.Puts("\n");
2868          // todo call this still but only generate rules whith specific options
2869          // see we-have-file-specific-options in ProjectNode.ec
2870          topNode.GenMakefilePrintObjectRules(f, this, namesInfo, config, nodeCFlagsMapping, nodeECFlagsMapping);
2871
2872          if(numCObjects)
2873             GenMakefilePrintMainObjectRule(f, config);
2874
2875          f.Printf("cleantarget: objdir%s\n", sameObjTargetDirs ? "" : " targetdir");
2876          f.Puts("\t$(call rmq,$(TARGET))\n");
2877          f.Puts("\n");
2878
2879          f.Puts("clean: cleantarget\n");
2880          OutputCleanActions(f, "_OBJECTS", objectsParts);
2881          if(numCObjects)
2882          {
2883             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)");
2884             OutputCleanActions(f, "ECOBJECTS", eCsourcesParts);
2885             OutputCleanActions(f, "COBJECTS", eCsourcesParts);
2886             OutputCleanActions(f, "BOWLS", eCsourcesParts);
2887             OutputCleanActions(f, "IMPORTS", eCsourcesParts);
2888             OutputCleanActions(f, "SYMBOLS", eCsourcesParts);
2889          }
2890          f.Puts("\n");
2891
2892          f.Puts("realclean: cleantarget\n");
2893          f.Puts("\t$(call rmrq,$(OBJ))\n");
2894          if(!sameObjTargetDirs)
2895             f.Printf("\t$(call rmdirq,%s)\n", targetDirExpNoSpaces);
2896          f.Puts("\n");
2897
2898          f.Puts("distclean: cleantarget\n");
2899          if(!sameObjTargetDirs)
2900             f.Printf("\t$(call rmdirq,%s)\n", targetDirExpNoSpaces);
2901          f.Puts("\t$(call rmrq,obj/)\n");
2902
2903          delete f;
2904
2905          listItems.Free();
2906          delete listItems;
2907          varStringLenDiffs.Free();
2908          delete varStringLenDiffs;
2909          namesInfo.Free();
2910          delete namesInfo;
2911
2912          delete cflagsVariations;
2913          delete nodeCFlagsMapping;
2914          delete ecflagsVariations;
2915          delete nodeECFlagsMapping;
2916
2917          result = true;
2918       }
2919
2920       // ChangeWorkingDir(oldDirectory);
2921       // delete pathBackup;
2922
2923       if(config)
2924          config.makingModified = false;
2925       return result;
2926    }
2927
2928    void GenMakefilePrintMainObjectRule(File f, ProjectConfig config)
2929    {
2930       char extension[MAX_EXTENSION] = "c";
2931       char modulePath[MAX_LOCATION];
2932       char fixedModuleName[MAX_FILENAME];
2933       DualPipe dep;
2934       char command[2048];
2935       char objDirNoSpaces[MAX_LOCATION];
2936       String objDirExp = GetObjDirExpression(config);
2937
2938       ReplaceSpaces(objDirNoSpaces, objDirExp);
2939       ReplaceSpaces(fixedModuleName, moduleName);
2940       
2941       //sprintf(fixedModuleName, "%s.main", fixedPrjName);
2942       //strcat(fixedModuleName, ".main");
2943
2944 #if 0       // TODO: Fix nospaces stuff
2945       // *** Dependency command ***
2946       sprintf(command, "gcc -MT $(OBJ)%s$(O) -MM $(OBJ)%s.c", fixedModuleName, fixedModuleName);
2947
2948       // System Includes (from global settings)
2949       for(item : compiler.dirs[Includes])
2950       {
2951          strcat(command, " -isystem ");
2952          if(strchr(item.name, ' '))
2953          {
2954             strcat(command, "\"");
2955             strcat(command, item);
2956             strcat(command, "\"");
2957          }
2958          else
2959             strcat(command, item);
2960       }
2961
2962       for(item = includeDirs.first; item; item = item.next)
2963       {
2964          strcat(command, " -I");
2965          if(strchr(item.name, ' '))
2966          {
2967             strcat(command, "\"");
2968             strcat(command, item.name);
2969             strcat(command, "\"");
2970          }
2971          else
2972             strcat(command, item.name);
2973       }
2974       for(item = preprocessorDefs.first; item; item = item.next)
2975       {
2976          strcat(command, " -D");
2977          strcat(command, item.name);
2978       }
2979
2980       // Execute it
2981       if((dep = DualPipeOpen(PipeOpenMode { output = 1, error = 1, input = 2 }, command)))
2982       {
2983          char line[1024];
2984          bool result = true;
2985          bool firstLine = true;
2986
2987          // To do some time: auto save external dependencies?
2988          while(!dep.Eof())
2989          {
2990             if(dep.GetLine(line, sizeof(line)-1))
2991             {
2992                if(firstLine)
2993                {
2994                   char * colon = strstr(line, ":");
2995                   if(strstr(line, "No such file") || strstr(line, ",") || (colon && strstr(colon+1, ":")))
2996                   {
2997                      result = false;
2998                      break;
2999                   }
3000                   firstLine = false;
3001                }
3002                f.Puts(line);
3003                f.Puts("\n");
3004             }
3005             if(!result) break;
3006          }
3007          delete dep;
3008
3009          // If we failed to generate dependencies...
3010          if(!result)
3011          {
3012 #endif
3013             f.Puts("$(OBJ)$(MODULE).main$(O): $(OBJ)$(MODULE).main.c\n");
3014             f.Printf("\t$(CC) $(CFLAGS) $(PRJ_CFLAGS) $(FVISIBILITY) -c $(OBJ)$(MODULE).main.%s -o $(OBJ)$(MODULE).main$(O)\n", extension);
3015             f.Puts("\n");
3016 #if 0
3017          }
3018       }
3019 #endif
3020    }
3021
3022    void GenMakePrintCustomFlags(File f, String variableName, bool printNonCustom, Map<String, int> cflagsVariations)
3023    {
3024       int c;
3025       for(c = printNonCustom ? 0 : 1; c <= cflagsVariations.count; c++)
3026       {
3027          for(v : cflagsVariations)
3028          {
3029             if(v == c)
3030             {
3031                if(v == 1)
3032                   f.Printf("%s +=", variableName);
3033                else
3034                   f.Printf("CUSTOM%d_%s =", v-1, variableName);
3035                f.Puts(&v ? &v : "");
3036                f.Puts("\n");
3037                f.Puts("\n");
3038                break;
3039             }
3040          }
3041       }
3042       f.Puts("\n");
3043    }
3044
3045    void MatchProjectAndConfigPlatformOptions(ProjectConfig config, Platform platform,
3046          PlatformOptions * projectPlatformOptions, PlatformOptions * configPlatformOptions)
3047    {
3048       *projectPlatformOptions = null;
3049       *configPlatformOptions = null;
3050       if(platforms)
3051       {
3052          for(p : platforms)
3053          {
3054             if(!strcmpi(p.name, platform))
3055             {
3056                *projectPlatformOptions = p;
3057                break;
3058             }
3059          }
3060       }
3061       if(config && config.platforms)
3062       {
3063          for(p : config.platforms)
3064          {
3065             if(!strcmpi(p.name, platform))
3066             {
3067                *configPlatformOptions = p;
3068                break;
3069             }
3070          }
3071       }
3072    }
3073 }
3074
3075 Project LegacyBinaryLoadProject(File f, char * filePath)
3076 {
3077    Project project = null;
3078    char signature[sizeof(epjSignature)];
3079
3080    f.Read(signature, sizeof(signature), 1);
3081    if(!strncmp(signature, (char *)epjSignature, sizeof(epjSignature)))
3082    {
3083       char topNodePath[MAX_LOCATION];
3084       /*ProjectConfig newConfig
3085       {
3086          name = CopyString("Default");
3087          makingModified = true;
3088          compilingModified = true;
3089          linkingModified = true;
3090          options = { };
3091       };*/
3092
3093       project = Project { options = { } };
3094       LegacyBinaryLoadNode(project.topNode, f);
3095       delete project.topNode.path;
3096       GetWorkingDir(topNodePath, sizeof(topNodePath)-1);
3097       MakeSlashPath(topNodePath);
3098
3099       PathCatSlash(topNodePath, filePath);
3100       project.filePath = topNodePath;
3101       
3102       /* THIS IS ALREADY DONE BY filePath property
3103       StripLastDirectory(topNodePath, topNodePath);
3104       project.topNode.path = CopyString(topNodePath);
3105       */
3106       // Shouldn't this be done BEFORE the StripLastDirectory? project.filePath = topNodePath;
3107       
3108       // newConfig.options.defaultNameSpace = "";
3109       /*newConfig.objDir.dir = "obj";
3110       newConfig.targetDir.dir = "";*/
3111
3112       //project.configurations = { [ newConfig ] };
3113       //project.config = newConfig;
3114
3115       // Project Settings
3116       if(!f.Eof())
3117       {
3118          int temp;
3119          int len,c, count;
3120          String targetFileName, targetDirectory, objectsDirectory;
3121
3122          // { executable = 0, sharedLibrary = 1, staticLibrary = 2 };
3123          f.Read(&temp, sizeof(int),1);
3124          switch(temp)
3125          {
3126             case 0: project.options.targetType = executable; break;
3127             case 1: project.options.targetType = sharedLibrary; break;
3128             case 2: project.options.targetType = staticLibrary; break;
3129          }
3130
3131          f.Read(&len, sizeof(int),1);
3132          targetFileName = new char[len+1];
3133          f.Read(targetFileName, sizeof(char), len+1);
3134          project.options.targetFileName = targetFileName;
3135          delete targetFileName;
3136
3137          f.Read(&len, sizeof(int),1);
3138          targetDirectory = new char[len+1];
3139          f.Read(targetDirectory, sizeof(char), len+1);
3140          project.options.targetDirectory = targetDirectory;
3141          delete targetDirectory;
3142
3143          f.Read(&len, sizeof(int),1);
3144          objectsDirectory = new byte[len+1];
3145          f.Read(objectsDirectory, sizeof(char), len+1);
3146          project.options.objectsDirectory = objectsDirectory;
3147          delete objectsDirectory;
3148
3149          f.Read(&temp, sizeof(int),1);
3150          project./*config.*/options.debug = temp ? true : false;
3151          f.Read(&temp, sizeof(int),1);         
3152          project./*config.*/options.optimization = temp ? speed : none;
3153          f.Read(&temp, sizeof(int),1);
3154          project./*config.*/options.profile = temp ? true : false;
3155          f.Read(&temp, sizeof(int),1);
3156          project.options.warnings = temp ? all : unset;
3157
3158          f.Read(&count, sizeof(int),1);
3159          if(count)
3160          {
3161             project.options.includeDirs = { };
3162             for(c = 0; c < count; c++)
3163             {
3164                char * name;
3165                f.Read(&len, sizeof(int),1);
3166                name = new char[len+1];
3167                f.Read(name, sizeof(char), len+1);
3168                project.options.includeDirs.Add(name);
3169             }
3170          }
3171
3172          f.Read(&count, sizeof(int),1);
3173          if(count)
3174          {
3175             project.options.libraryDirs = { };
3176             for(c = 0; c < count; c++)
3177             {
3178                char * name;            
3179                f.Read(&len, sizeof(int),1);
3180                name = new char[len+1];
3181                f.Read(name, sizeof(char), len+1);
3182                project.options.libraryDirs.Add(name);
3183             }
3184          }
3185
3186          f.Read(&count, sizeof(int),1);
3187          if(count)
3188          {
3189             project.options.libraries = { };
3190             for(c = 0; c < count; c++)
3191             {
3192                char * name;
3193                f.Read(&len, sizeof(int),1);
3194                name = new char[len+1];
3195                f.Read(name, sizeof(char), len+1);
3196                project.options.libraries.Add(name);
3197             }
3198          }
3199
3200          f.Read(&count, sizeof(int),1);
3201          if(count)
3202          {
3203             project.options.preprocessorDefinitions = { };
3204             for(c = 0; c < count; c++)
3205             {
3206                char * name;
3207                f.Read(&len, sizeof(int),1);
3208                name = new char[len+1];
3209                f.Read(name, sizeof(char), len+1);
3210                project.options.preprocessorDefinitions.Add(name);
3211             }
3212          }
3213
3214          f.Read(&temp, sizeof(int),1);
3215          project.options.console = temp ? true : false;
3216       }
3217
3218       for(node : project.topNode.files)
3219       {
3220          if(node.type == resources)
3221          {
3222             project.resNode = node;
3223             break;
3224          }
3225       }
3226    }
3227    else
3228       f.Seek(0, start);
3229    return project;
3230 }
3231
3232 void ProjectConfig::LegacyProjectConfigLoad(File f)
3233 {  
3234    delete options;
3235    options = { };
3236    while(!f.Eof())
3237    {
3238       char buffer[65536];
3239       char section[128];
3240       char subSection[128];
3241       char * equal;
3242       int len;
3243       uint pos;
3244       
3245       pos = f.Tell();
3246       f.GetLine(buffer, 65536 - 1);
3247       TrimLSpaces(buffer, buffer);
3248       TrimRSpaces(buffer, buffer);
3249       if(strlen(buffer))
3250       {
3251          if(buffer[0] == '-')
3252          {
3253             equal = &buffer[0];
3254             equal[0] = ' ';
3255             TrimLSpaces(equal, equal);
3256             if(!strcmpi(subSection, "LibraryDirs"))
3257             {
3258                if(!options.libraryDirs)
3259                   options.libraryDirs = { [ CopyString(equal) ] };
3260                else
3261                   options.libraryDirs.Add(CopyString(equal));
3262             }
3263             else if(!strcmpi(subSection, "IncludeDirs"))
3264             {
3265                if(!options.includeDirs)
3266                   options.includeDirs = { [ CopyString(equal) ] };
3267                else
3268                   options.includeDirs.Add(CopyString(equal));
3269             }
3270          }
3271          else if(buffer[0] == '+')
3272          {
3273             if(name)
3274             {
3275                f.Seek(pos, start);
3276                break;
3277             }
3278             else
3279             {
3280                equal = &buffer[0];
3281                equal[0] = ' ';
3282                TrimLSpaces(equal, equal);
3283                delete name; name = CopyString(equal); // property::name = equal;
3284             }
3285          }
3286          else if(!strcmpi(buffer, "Compiler Options"))
3287             strcpy(section, buffer);
3288          else if(!strcmpi(buffer, "IncludeDirs"))
3289             strcpy(subSection, buffer);
3290          else if(!strcmpi(buffer, "Linker Options"))
3291             strcpy(section, buffer);
3292          else if(!strcmpi(buffer, "LibraryDirs"))
3293             strcpy(subSection, buffer);
3294          else if(!strcmpi(buffer, "Files") || !strcmpi(buffer, "Resources"))
3295          {
3296             f.Seek(pos, start);
3297             break;
3298          }
3299          else
3300          {
3301             equal = strstr(buffer, "=");
3302             if(equal)
3303             {
3304                equal[0] = '\0';
3305                TrimRSpaces(buffer, buffer);
3306                equal++;
3307                TrimLSpaces(equal, equal);
3308                if(!strcmpi(buffer, "Target Name"))
3309                   options.targetFileName = /*CopyString(*/equal/*)*/;
3310                else if(!strcmpi(buffer, "Target Type"))
3311                {
3312                   if(!strcmpi(equal, "Executable"))
3313                      options.targetType = executable;
3314                   else if(!strcmpi(equal, "Shared"))
3315                      options.targetType = sharedLibrary;
3316                   else if(!strcmpi(equal, "Static"))
3317                      options.targetType = staticLibrary;
3318                   else
3319                      options.targetType = executable;
3320                }
3321                else if(!strcmpi(buffer, "Target Directory"))
3322                   options.targetDirectory = /*CopyString(*/equal/*)*/;
3323                else if(!strcmpi(buffer, "Console"))
3324                   options.console = ParseTrueFalseValue(equal);
3325                else if(!strcmpi(buffer, "Libraries"))
3326                {
3327                   if(!options.libraries) options.libraries = { };
3328                   ParseArrayValue(options.libraries, equal);
3329                }
3330                else if(!strcmpi(buffer, "Intermediate Directory"))
3331                   options.objectsDirectory = /*CopyString(*/equal/*)*/; //objDir.expression = equal;
3332                else if(!strcmpi(buffer, "Debug"))
3333                   options.debug = ParseTrueFalseValue(equal);
3334                else if(!strcmpi(buffer, "Optimize"))
3335                {
3336                   if(!strcmpi(equal, "None"))
3337                      options.optimization = none;
3338                   else if(!strcmpi(equal, "Speed") || !strcmpi(equal, "True"))
3339                      options.optimization = speed;
3340                   else if(!strcmpi(equal, "Size"))
3341                      options.optimization = size;
3342                   else
3343                      options.optimization = none;
3344                }
3345                else if(!strcmpi(buffer, "Compress"))
3346                   options.compress = ParseTrueFalseValue(equal);
3347                else if(!strcmpi(buffer, "Profile"))
3348                   options.profile = ParseTrueFalseValue(equal);
3349                else if(!strcmpi(buffer, "AllWarnings"))
3350                   options.warnings = ParseTrueFalseValue(equal) ? all : unset;
3351                else if(!strcmpi(buffer, "MemoryGuard"))
3352                   options.memoryGuard = ParseTrueFalseValue(equal);
3353                else if(!strcmpi(buffer, "Default Name Space"))
3354                   options.defaultNameSpace = CopyString(equal);
3355                else if(!strcmpi(buffer, "Strict Name Spaces"))
3356                   options.strictNameSpaces = ParseTrueFalseValue(equal);
3357                else if(!strcmpi(buffer, "Preprocessor Definitions"))
3358                {
3359                   if(!options.preprocessorDefinitions) options.preprocessorDefinitions = { };
3360                   ParseArrayValue(options.preprocessorDefinitions, equal);
3361                }
3362             }
3363          }
3364       }
3365    }
3366    if(!options.targetDirectory && options.objectsDirectory)
3367       options.targetDirectory = /*CopyString(*/options.objectsDirectory/*)*/;
3368    //if(!objDir.dir) objDir.dir = "obj";
3369    //if(!targetDir.dir) targetDir.dir = "";
3370    // if(!targetName) property::targetName = "";   // How can a targetFileName be nothing???
3371    // if(!defaultNameSpace) property::defaultNameSpace = "";
3372    makingModified = true;
3373 }
3374
3375 Project LegacyAsciiLoadProject(File f, char * filePath)
3376 {
3377    Project project = null;
3378    ProjectNode node = null;
3379    int pos;
3380    char parentPath[MAX_LOCATION];
3381    char section[128] = "";
3382    char subSection[128] = "";
3383    ProjectNode parent;
3384    bool configurationsPresent = false;
3385
3386    f.Seek(0, start);
3387    while(!f.Eof())
3388    {
3389       char buffer[65536];
3390       //char version[16];
3391       char * equal;
3392       int len;
3393       pos = f.Tell();
3394       f.GetLine(buffer, 65536 - 1);
3395       TrimLSpaces(buffer, buffer);
3396       TrimRSpaces(buffer, buffer);
3397       if(strlen(buffer))
3398       {
3399          if(buffer[0] == '-' || buffer[0] == '=')
3400          {
3401             bool simple = buffer[0] == '-';
3402             equal = &buffer[0];
3403             equal[0] = ' ';
3404             TrimLSpaces(equal, equal);
3405             if(!strcmpi(section, "Target") && !strcmpi(subSection, "LibraryDirs"))
3406             {
3407                if(!project.config.options.libraryDirs)
3408                   project.config.options.libraryDirs = { [ CopyString(equal) ] };
3409                else
3410                   project.config.options.libraryDirs.Add(CopyString(equal));
3411             }
3412             else if(!strcmpi(section, "Target") && !strcmpi(subSection, "IncludeDirs"))
3413             {
3414                if(!project.config.options.includeDirs)
3415                   project.config.options.includeDirs = { [ CopyString(equal) ] };
3416                else
3417                   project.config.options.includeDirs.Add(CopyString(equal));
3418             }
3419             else if(!strcmpi(section, "Target") && (!strcmpi(subSection, "Files") || !strcmpi(subSection, "Resources")))
3420             {
3421                len = strlen(equal);
3422                if(len)
3423                {
3424                   char temp[MAX_LOCATION];
3425                   ProjectNode child { };
3426                   // We don't need to do this anymore, fileName is just a property that sets name & path
3427                   // child.fileName = CopyString(equal);
3428                   if(simple)
3429                   {
3430                      child.name = CopyString(equal);
3431                      child.path = CopyString(parentPath);
3432                   }
3433                   else
3434                   {
3435                      GetLastDirectory(equal, temp);
3436                      child.name = CopyString(temp);
3437                      StripLastDirectory(equal, temp);
3438                      child.path = CopyString(temp);
3439                   }
3440                   child.nodeType = file;
3441                   child.parent = parent;
3442                   child.indent = parent.indent + 1;
3443                   child.type = file;
3444                   child.icon = NodeIcons::SelectFileIcon(child.name);
3445                   parent.files.Add(child);
3446                   node = child;
3447                   //child = null;
3448                }
3449                else
3450                {
3451                   StripLastDirectory(parentPath, parentPath);
3452                   parent = parent.parent;
3453                }
3454             }
3455          }
3456          else if(buffer[0] == '+')
3457          {
3458             equal = &buffer[0];
3459             equal[0] = ' ';
3460             TrimLSpaces(equal, equal);
3461             if(!strcmpi(section, "Target") && (!strcmpi(subSection, "Files") || !strcmpi(subSection, "Resources")))
3462             {
3463                char temp[MAX_LOCATION];
3464                ProjectNode child { };
3465                // NEW: Folders now have a path set like files
3466                child.name = CopyString(equal);
3467                strcpy(temp, parentPath);
3468                PathCatSlash(temp, child.name);
3469                child.path = CopyString(temp);
3470
3471                child.parent = parent;
3472                child.indent = parent.indent + 1;
3473                child.type = folder;
3474                child.nodeType = folder;
3475                child.files = { };
3476                child.icon = folder;
3477                PathCatSlash(parentPath, child.name);
3478                parent.files.Add(child);
3479                parent = child;
3480                node = child;
3481                //child = null;
3482             }
3483             else if(!strcmpi(section, "Configurations"))
3484             {
3485                ProjectConfig newConfig
3486                {
3487                   makingModified = true;
3488                   options = { };
3489                };
3490                f.Seek(pos, start);
3491                LegacyProjectConfigLoad(newConfig, f);
3492                project.configurations.Add(newConfig);
3493             }
3494          }
3495          else if(!strcmpi(buffer, "ECERE Project File"));
3496          else if(!strcmpi(buffer, "Version 0a"))
3497             ; //strcpy(version, "0a");
3498          else if(!strcmpi(buffer, "Version 0.1a"))
3499             ; //strcpy(version, "0.1a");
3500          else if(!strcmpi(buffer, "Configurations"))
3501          {
3502             project.configurations.Free();
3503             project.config = null;
3504             strcpy(section, buffer);
3505             configurationsPresent = true;
3506          }
3507          else if(!strcmpi(buffer, "Target") || !strnicmp(buffer, "Target \"", strlen("Target \"")))
3508          {
3509             ProjectConfig newConfig { name = CopyString("Default"), options = { } };
3510             char topNodePath[MAX_LOCATION];
3511             // newConfig.defaultNameSpace = "";
3512             //newConfig.objDir.dir = "obj";
3513             //newConfig.targetDir.dir = "";
3514             project = Project { /*options = { }*/ };
3515             project.configurations = { [ newConfig ] };
3516             project.config = newConfig;
3517             // if(project.topNode.path) delete project.topNode.path;
3518             GetWorkingDir(topNodePath, sizeof(topNodePath)-1);
3519             MakeSlashPath(topNodePath);
3520             PathCatSlash(topNodePath, filePath);
3521             project.filePath = topNodePath;
3522             parentPath[0] = '\0';
3523             parent = project.topNode;
3524             node = parent;
3525             strcpy(section, "Target");
3526             equal = &buffer[6];
3527             if(equal[0] == ' ')
3528             {
3529                equal++;
3530                if(equal[0] == '\"')
3531                {
3532                   StripQuotes(equal, equal);
3533                   delete project.moduleName; project.moduleName = CopyString(equal);
3534                }
3535             }
3536          }
3537          else if(!strcmpi(buffer, "Compiler Options"));
3538          else if(!strcmpi(buffer, "IncludeDirs"))
3539             strcpy(subSection, buffer);
3540          else if(!strcmpi(buffer, "Linker Options"));
3541          else if(!strcmpi(buffer, "LibraryDirs"))
3542             strcpy(subSection, buffer);
3543          else if(!strcmpi(buffer, "Files"))
3544          {
3545             strcpy(section, "Target");
3546             strcpy(subSection, buffer);
3547          }
3548          else if(!strcmpi(buffer, "Resources"))
3549          {
3550             ProjectNode child { };
3551             parent.files.Add(child);
3552             child.parent = parent;
3553             child.indent = parent.indent + 1;
3554             child.name = CopyString(buffer);
3555             child.path = CopyString("");
3556             child.type = resources;
3557             child.files = { };
3558             child.icon = archiveFile;
3559             project.resNode = child;
3560             parent = child;
3561             node = child;
3562             strcpy(subSection, buffer);
3563          }
3564          else
3565          {
3566             equal = strstr(buffer, "=");
3567             if(equal)
3568             {
3569                equal[0] = '\0';
3570                TrimRSpaces(buffer, buffer);
3571                equal++;
3572                TrimLSpaces(equal, equal);
3573
3574                if(!strcmpi(section, "Target"))
3575                {
3576                   if(!strcmpi(buffer, "Build Exclusions"))
3577                   {
3578                      if(!strcmpi(section, "Target") && !strcmpi(subSection, "Files"))
3579                      {
3580                         /*if(node && node.type != NodeTypes::project)
3581                            ParseListValue(node.buildExclusions, equal);*/
3582                      }
3583                   }
3584                   else if(!strcmpi(buffer, "Path") && !strcmpi(subSection, "Resources"))
3585                   {
3586                      delete project.resNode.path;
3587                      project.resNode.path = CopyString(equal);
3588                      PathCatSlash(parentPath, equal);
3589                   }
3590
3591                   // Config Settings
3592                   else if(!strcmpi(buffer, "Intermediate Directory"))
3593                      project.config.options.objectsDirectory = /*CopyString(*/equal/*)*/; //objDir.expression = equal;
3594                   else if(!strcmpi(buffer, "Debug"))
3595                      project.config.options.debug = ParseTrueFalseValue(equal);
3596                   else if(!strcmpi(buffer, "Optimize"))
3597                   {
3598                      if(!strcmpi(equal, "None"))
3599                         project.config.options.optimization = none;
3600                      else if(!strcmpi(equal, "Speed") || !strcmpi(equal, "True"))
3601                         project.config.options.optimization = speed;
3602                      else if(!strcmpi(equal, "Size"))
3603                         project.config.options.optimization = size;
3604                      else
3605                         project.config.options.optimization = none;
3606                   }
3607                   else if(!strcmpi(buffer, "Profile"))
3608                      project.config.options.profile = ParseTrueFalseValue(equal);
3609                   else if(!strcmpi(buffer, "MemoryGuard"))
3610                      project.config.options.memoryGuard = ParseTrueFalseValue(equal);
3611                   else
3612                   {
3613                      if(!project.options) project.options = { };
3614
3615                      // Project Wide Settings (All configs)
3616                      if(!strcmpi(buffer, "Target Name"))
3617                         project.options.targetFileName = /*CopyString(*/equal/*)*/;
3618                      else if(!strcmpi(buffer, "Target Type"))
3619                      {
3620                         if(!strcmpi(equal, "Executable"))
3621                            project.options.targetType = executable;
3622                         else if(!strcmpi(equal, "Shared"))
3623                            project.options.targetType = sharedLibrary;
3624                         else if(!strcmpi(equal, "Static"))
3625                            project.options.targetType = staticLibrary;
3626                         else
3627                            project.options.targetType = executable;
3628                      }
3629                      else if(!strcmpi(buffer, "Target Directory"))
3630                         project.options.targetDirectory = /*CopyString(*/equal/*)*/;
3631                      else if(!strcmpi(buffer, "Console"))
3632                         project.options.console = ParseTrueFalseValue(equal);
3633                      else if(!strcmpi(buffer, "Libraries"))
3634                      {
3635                         if(!project.options.libraries) project.options.libraries = { };
3636                         ParseArrayValue(project.options.libraries, equal);
3637                      }
3638                      else if(!strcmpi(buffer, "AllWarnings"))
3639                         project.options.warnings = ParseTrueFalseValue(equal) ? all : unset;
3640                      else if(!strcmpi(buffer, "Preprocessor Definitions"))
3641                      {
3642                         if(!strcmpi(section, "Target") && !strcmpi(subSection, "Files"))
3643                         {
3644                            /*if(node && (node.type == NodeTypes::project || (node.type == file && !node.isInResources) || node.type == folder))
3645                               ParseListValue(node.preprocessorDefs, equal);*/
3646                         }
3647                         else
3648                         {
3649                            if(!project.options.preprocessorDefinitions) project.options.preprocessorDefinitions = { };
3650                            ParseArrayValue(project.options.preprocessorDefinitions, equal);
3651                         }
3652                      }
3653                   }
3654                }
3655             }
3656          }
3657       }
3658    }
3659    parent = null;
3660
3661    SplitPlatformLibraries(project);
3662
3663    if(configurationsPresent)
3664       CombineIdenticalConfigOptions(project);
3665    return project;
3666 }
3667
3668 void SplitPlatformLibraries(Project project)
3669 {
3670    if(project && project.configurations)
3671    {
3672       for(cfg : project.configurations)
3673       {
3674          if(cfg.options.libraries && cfg.options.libraries.count)
3675          {
3676             Iterator<String> it { cfg.options.libraries };
3677             while(it.Next())
3678             {
3679                String l = it.data;
3680                char * platformName = strstr(l, ":");
3681                if(platformName)
3682                {
3683                   PlatformOptions platform = null;
3684                   platformName++;
3685                   if(!cfg.platforms) cfg.platforms = { };
3686                   for(p : cfg.platforms)
3687                   {
3688                      if(!strcmpi(platformName, p.name))
3689                      {
3690                         platform = p;
3691                         break;
3692                      }
3693                   }
3694                   if(!platform)
3695                   {
3696                      platform = { name = CopyString(platformName), options = { libraries = { } } };
3697                      cfg.platforms.Add(platform);
3698                   }
3699                   *(platformName-1) = 0;
3700                   platform.options.libraries.Add(CopyString(l));
3701
3702                   cfg.options.libraries.Delete(it.pointer);
3703                   it.pointer = null;
3704                }
3705             }
3706          }
3707       }      
3708    }
3709 }
3710
3711 void CombineIdenticalConfigOptions(Project project)
3712 {
3713    if(project && project.configurations && project.configurations.count)
3714    {
3715       DataMember member;
3716       ProjectOptions nullOptions { };
3717       ProjectConfig firstConfig = null;
3718       for(cfg : project.configurations)
3719       {
3720          if(cfg.options.targetType != staticLibrary)
3721          {
3722             firstConfig = cfg;
3723             break;
3724          }
3725       }
3726       if(!firstConfig)
3727          firstConfig = project.configurations.firstIterator.data;
3728
3729       for(member = class(ProjectOptions).membersAndProperties.first; member; member = member.next)
3730       {
3731          if(!member.isProperty)
3732          {
3733             Class type = eSystem_FindClass(__thisModule, member.dataTypeString);
3734             if(type)
3735             {
3736                bool same = true;
3737
3738                for(cfg : project.configurations)
3739                {
3740                   if(cfg != firstConfig)
3741                   {
3742                      if(cfg.options.targetType != staticLibrary)
3743                      {
3744                         int result;
3745                         
3746                         if(type.type == noHeadClass || type.type == normalClass)
3747                         {
3748                            result = type._vTbl[__ecereVMethodID_class_OnCompare](type, 
3749                               *(void **)((byte *)firstConfig.options + member.offset + member._class.offset),
3750                               *(void **)((byte *)cfg.options         + member.offset + member._class.offset));
3751                         }
3752                         else
3753                         {
3754                            result = type._vTbl[__ecereVMethodID_class_OnCompare](type, 
3755                               (byte *)firstConfig.options + member.offset + member._class.offset,
3756                               (byte *)cfg.options         + member.offset + member._class.offset);
3757                         }
3758                         if(result)
3759                         {
3760                            same = false;
3761                            break;
3762                         }
3763                      }
3764                   }                  
3765                }
3766                if(same)
3767                {
3768                   if(type.type == noHeadClass || type.type == normalClass)
3769                   {
3770                      if(!type._vTbl[__ecereVMethodID_class_OnCompare](type, 
3771                         *(void **)((byte *)firstConfig.options + member.offset + member._class.offset),
3772                         *(void **)((byte *)nullOptions         + member.offset + member._class.offset)))
3773                         continue;
3774                   }
3775                   else
3776                   {
3777                      if(!type._vTbl[__ecereVMethodID_class_OnCompare](type, 
3778                         (byte *)firstConfig.options + member.offset + member._class.offset,
3779                         (byte *)nullOptions         + member.offset + member._class.offset))
3780                         continue;
3781                   }
3782
3783                   if(!project.options) project.options = { };
3784                   
3785                   /*if(type.type == noHeadClass || type.type == normalClass)
3786                   {
3787                      type._vTbl[__ecereVMethodID_class_OnCopy](type, 
3788                         (byte *)project.options + member.offset + member._class.offset,
3789                         *(void **)((byte *)firstConfig.options + member.offset + member._class.offset));
3790                   }
3791                   else
3792                   {
3793                      void * address = (byte *)firstConfig.options + member.offset + member._class.offset;
3794                      // TOFIX: ListBox::SetData / OnCopy mess
3795                      type._vTbl[__ecereVMethodID_class_OnCopy](type, 
3796                         (byte *)project.options + member.offset + member._class.offset,
3797                         (type.typeSize > 4) ? address : 
3798                            ((type.typeSize == 4) ? (void *)*(uint32 *)address : 
3799                               ((type.typeSize == 2) ? (void *)*(uint16*)address : 
3800                                  (void *)*(byte *)address )));                              
3801                   }*/
3802                   memcpy(
3803                      (byte *)project.options + member.offset + member._class.offset,
3804                      (byte *)firstConfig.options + member.offset + member._class.offset, type.typeSize);
3805
3806                   for(cfg : project.configurations)
3807                   {
3808                      if(cfg.options.targetType == staticLibrary)
3809                      {
3810                         int result;
3811                         
3812                         if(type.type == noHeadClass || type.type == normalClass)
3813                         {
3814                            result = type._vTbl[__ecereVMethodID_class_OnCompare](type, 
3815                               *(void **)((byte *)firstConfig.options + member.offset + member._class.offset),
3816                               *(void **)((byte *)cfg.options         + member.offset + member._class.offset));
3817                         }
3818                         else
3819                         {
3820                            result = type._vTbl[__ecereVMethodID_class_OnCompare](type, 
3821                               (byte *)firstConfig.options + member.offset + member._class.offset,
3822                               (byte *)cfg.options         + member.offset + member._class.offset);
3823                         }
3824                         if(result)
3825                            continue;
3826                      }
3827                      if(cfg != firstConfig)
3828                      {
3829                         if(type.type == noHeadClass || type.type == normalClass)
3830                         {
3831                            type._vTbl[__ecereVMethodID_class_OnFree](type, 
3832                               *(void **)((byte *)cfg.options + member.offset + member._class.offset));
3833                         }
3834                         else
3835                         {
3836                            type._vTbl[__ecereVMethodID_class_OnFree](type, 
3837                               (byte *)cfg.options + member.offset + member._class.offset);
3838                         }
3839                         memset((byte *)cfg.options + member.offset + member._class.offset, 0, type.typeSize);
3840                      }                     
3841                   }
3842                   memset((byte *)firstConfig.options + member.offset + member._class.offset, 0, type.typeSize);
3843                }
3844             }
3845          }
3846       }
3847       delete nullOptions;
3848
3849       // Compare Platform Specific Settings
3850       {
3851          bool same = true;
3852          for(cfg : project.configurations)
3853          {
3854             if(cfg != firstConfig && cfg.options.targetType != staticLibrary && (firstConfig.platforms || cfg.platforms) &&
3855                ((!firstConfig.platforms && cfg.platforms) || firstConfig.platforms.OnCompare(cfg.platforms)))
3856             {
3857                same = false;
3858                break;
3859             }
3860          }
3861          if(same && firstConfig.platforms)
3862          {
3863             for(cfg : project.configurations)
3864             {
3865                if(cfg.options.targetType == staticLibrary && firstConfig.platforms.OnCompare(cfg.platforms))
3866                   continue;
3867                if(cfg != firstConfig)
3868                {
3869                   cfg.platforms.Free();
3870                   delete cfg.platforms;
3871                }
3872             }
3873             project.platforms = firstConfig.platforms;
3874             firstConfig.platforms = null;
3875          }
3876       }
3877
3878       // Static libraries can't contain libraries
3879       for(cfg : project.configurations)
3880       {
3881          if(cfg.options.targetType == staticLibrary)
3882          {
3883             if(!cfg.options.libraries) cfg.options.libraries = { };
3884             cfg.options.libraries.Free();
3885          }
3886       }
3887    }
3888 }
3889
3890 Project LoadProject(char * filePath, char * activeConfigName)
3891 {
3892    Project project = null;
3893    File f = FileOpen(filePath, read);
3894    if(f)
3895    {
3896       project = LegacyBinaryLoadProject(f, filePath);
3897       if(!project)
3898       {
3899          JSONParser parser { f = f };
3900          JSONResult result = parser.GetObject(class(Project), &project);
3901          if(project)
3902          {
3903             char insidePath[MAX_LOCATION];
3904
3905             delete project.topNode.files;
3906             if(!project.files) project.files = { };
3907             project.topNode.files = project.files;
3908             project.resNode = project.topNode.Add(project, "Resources", project.topNode.files.last, resources, archiveFile, false);
3909             delete project.resNode.path;
3910             project.resNode.path = project.resourcesPath;
3911             project.resourcesPath = null;
3912             project.resNode.nodeType = (ProjectNodeType)-1;
3913             delete project.resNode.files;
3914             project.resNode.files = project.resources;
3915             project.files = null;
3916             project.resources = null;
3917             if(!project.configurations) project.configurations = { };
3918
3919             {
3920                char topNodePath[MAX_LOCATION];
3921                GetWorkingDir(topNodePath, sizeof(topNodePath)-1);
3922                MakeSlashPath(topNodePath);
3923                PathCatSlash(topNodePath, filePath);
3924                project.filePath = topNodePath;//filePath;
3925             }
3926
3927             project.topNode.FixupNode(insidePath);
3928          }
3929          delete parser;
3930       }
3931       if(!project)
3932          project = LegacyAsciiLoadProject(f, filePath);
3933
3934       delete f;
3935
3936       if(project)
3937       {
3938          if(!project.options) project.options = { };
3939          if(activeConfigName && activeConfigName[0] && project.configurations)
3940          {
3941             for(cfg : project.configurations)
3942             {
3943                if(!strcmpi(cfg.name, activeConfigName))
3944                {
3945                   project.config = cfg;
3946                   break;
3947                }
3948             }
3949          }
3950          if(!project.config && project.configurations)
3951             project.config = project.configurations.firstIterator.data;
3952
3953          if(!project.resNode)
3954          {
3955             project.resNode = project.topNode.Add(project, "Resources", project.topNode.files.last, resources, archiveFile, false);
3956          }
3957          
3958          if(!project.moduleName)
3959             project.moduleName = CopyString(project.name);
3960          if(project.config && 
3961             (!project.options || !project.options.targetFileName || !project.options.targetFileName[0]) &&
3962             (!project.config.options.targetFileName || !project.config.options.targetFileName[0]))
3963          {
3964             //delete project.config.options.targetFileName;
3965             
3966             project.options.targetFileName = /*CopyString(*/project.moduleName/*)*/;
3967             project.config.options.optimization = none;
3968             project.config.options.debug = true;
3969             //project.config.options.warnings = unset;
3970             project.config.options.memoryGuard = false;
3971             project.config.compilingModified = true;
3972             project.config.linkingModified = true;
3973          }
3974          else if(!project.topNode.name && project.config)
3975          {
3976             project.topNode.name = CopyString(project.config.options.targetFileName);
3977          }
3978
3979          /* // THIS IS NOW AUTOMATED WITH A project CHECK IN ProjectNode
3980          project.topNode.configurations = project.configurations;
3981          project.topNode.platforms = project.platforms;
3982          project.topNode.options = project.options;*/
3983       }
3984    }
3985    return project;
3986 }