ecere/Makefile: Added new gl3/ files; Fixes to run shaders on Linux
[sdk] / ecere / ecere.epj
1 {
2    "Version" : 0.2,
3    "ModuleName" : "ecere",
4    "ModuleVersion" : "0.44",
5    "Description" : "Ecere Runtime library",
6    "License" : "The Ecere SDK v0.44.14 - http://ecere.org
7
8 The Ecere SDK is Free Open Source Software. It is provided with NO WARRANTY
9 expressed or implied to the extent permitted by law.
10
11 Applications built with it can be distributed both commercially and non
12 commercially, along with the supporting Ecere runtime library(ies):
13
14    * libecere.so / ecere.dll
15       - Core eC framework + GUI toolkit, 2D/3D graphics engine, networking
16    * libecereCOM.so / ecereCOM.dll
17       - Core eC framework only
18    * libEDA.so / EDA.dll
19       - Data Access System
20    * libEDASQLite.so / EDASQLite.dll
21       - SQLite driver for EDA
22    * libEcereAudio.so / EcereAudio.dll
23       - Audio output library (using ALSA / DirectSound)
24
25 The Ecere SDK is distributed under the New BSD license:
26
27 ================================================================================
28
29    Copyright (c) 1996-2016, Jerome Jacovella-St-Louis
30    Copyright (c) 2005-2016, Ecere Corporation
31
32    All rights reserved.
33
34    Redistribution and use in source and binary forms, with or without
35    modification, are permitted provided that the following conditions are met:
36
37     * Redistributions of source code must retain the above copyright notice,
38       this list of conditions and the following disclaimer.
39     * Redistributions in binary form must reproduce the above copyright notice,
40       this list of conditions and the following disclaimer in the documentation
41       and/or other materials provided with the distribution.
42     * Neither the name of Ecere Corporation nor the names of its contributors
43       may be used to endorse or promote products derived from this software
44       without specific prior written permission.
45
46    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
47    \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
48    LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
49    A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
50    CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
51    EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
52    PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
53    PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
54    LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
55    NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
56    SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
57
58 ================================================================================
59
60 This software makes use of other software components whose licenses may also
61 apply, which are found in their respective source directories (most under
62 deps/).
63
64 Among them: zlib, libPNG, libJPEG, giflib or libungif, HarfBuzz, FreeType,
65    Tango icons
66
67 For EDA: SQLite (EDASQLite), libffi
68
69 On Windows, applications built statically with the MinGW-w64 runtime should
70 include the MinGW-w64 runtime license in their application.
71    See ecere-sdk/extras/res/licenses/MinGW-w64.LICENSE or
72        Program Files/Ecere SDK/tdm/licenses/COPYING.MinGW-w64-runtime.txt
73
74 The Ecere IDE also communicates with GCC for compiling
75 (MinGW/MinGW-w64 on Windows), GDB for debugging, and UPX for optionally
76 compressing executables.
77
78 Each of these have their own license, which can be found from wherever you
79 obtained them or under:
80    Program Files/Ecere SDK/tdm/licenses/  and
81    Program Files/Ecere SDK/upx/doc/
82 if distributed with the Ecere SDK Windows installer.
83 ",
84    "Options" : {
85       "Warnings" : "All",
86       "PreprocessorDefinitions" : [
87          "BUILDING_ECERE_COM"
88       ],
89       "IncludeDirs" : [
90          "src/gfx/drivers/harfbuzz",
91          "/usr/X11R6/include",
92          "/usr/X11R6/include/freetype2",
93          "src/gfx/drivers/gl3"
94       ],
95       "DefaultNameSpace" : "ecere",
96       "TargetType" : "SharedLibrary",
97       "TargetFileName" : "ecere",
98       "TargetDirectory" : "",
99       "Libraries" : [
100          "jpeg",
101          "png",
102          "z",
103          "freetype"
104       ]
105    },
106    "Platforms" : [
107       {
108          "Name" : "Linux",
109          "Options" : {
110             "IncludeDirs" : [
111                "/usr/include/freetype2"
112             ],
113             "Libraries" : [
114                "ncurses",
115                "pthread",
116                "m",
117                "dl",
118                "fontconfig",
119                "gif",
120                "X11",
121                "Xext",
122                "Xrender",
123                "GL",
124                "ssl",
125                "crypto"
126             ],
127             "LibraryDirs" : [
128                "/usr/X11R6/lib"
129             ]
130          }
131       },
132       {
133          "Name" : "Win32",
134          "Options" : {
135             "IncludeDirs" : [
136                "../deps/jpeg-9a",
137                "../deps/libpng-1.6.12",
138                "../deps/libungif-4.1.1/lib",
139                "../deps/zlib-1.2.8",
140                "../deps/freetype-2.3.12/include",
141                "../deps/glext",
142                "$(OPENSSL_INCLUDE_DIR)"
143             ],
144             "Libraries" : [
145                "dxguid",
146                "ddraw",
147                "dinput",
148                "winmm",
149                "opengl32",
150                "ws2_32",
151                "kernel32",
152                "user32",
153                "gdi32",
154                "mpr",
155                "advapi32",
156                "shell32",
157                "winspool",
158                "imm32",
159                "ungif",
160                "eay32",
161                "ssleay32"
162             ],
163             "LibraryDirs" : [
164                "../deps/zlib-1.2.8/obj/release.$(PLATFORM)$(COMPILER_SUFFIX)",
165                "../deps/jpeg-9a/obj/release.$(PLATFORM)$(COMPILER_SUFFIX)",
166                "../deps/libpng-1.6.12/obj/release.$(PLATFORM)$(COMPILER_SUFFIX)",
167                "../deps/libungif-4.1.1/obj/release.$(PLATFORM)$(COMPILER_SUFFIX)",
168                "../deps/freetype-2.3.12/obj/release.$(PLATFORM)$(COMPILER_SUFFIX)",
169                "$(OPENSSL_BIN_DIR)",
170                "$(OPENSSL_LIB_DIR)"
171             ]
172          }
173       },
174       {
175          "Name" : "apple",
176          "Options" : {
177             "IncludeDirs" : [
178                "/usr/include/freetype2",
179                "$(SYSROOT)/usr/X11/include/freetype2",
180                "$(SYSROOT)/usr/X11/include",
181                "/usr/X11R6/include/freetype2",
182                "/usr/X11R6/include",
183                "../deps/jpeg-9a",
184                "../deps/libpng-1.6.12",
185                "../deps/libungif-4.1.1/lib"
186             ],
187             "Libraries" : [
188                "curses",
189                "pthread",
190                "m",
191                "dl",
192                "fontconfig",
193                "ungif",
194                "X11",
195                "Xext",
196                "Xrender",
197                "GL",
198                "ssl",
199                "crypto"
200             ],
201             "LibraryDirs" : [
202                "$(SYSROOT)/usr/X11/lib",
203                "/usr/X11R6/lib",
204                "../deps/jpeg-9a/obj/release.$(PLATFORM)$(COMPILER_SUFFIX)",
205                "../deps/libungif-4.1.1/obj/release.$(PLATFORM)$(COMPILER_SUFFIX)"
206             ]
207          }
208       }
209    ],
210    "Configurations" : [
211       {
212          "Name" : "Debug",
213          "Options" : {
214             "Debug" : true,
215             "PreprocessorDefinitions" : [
216                "_DEBUG"
217             ]
218          }
219       },
220       {
221          "Name" : "MemoryGuard",
222          "Options" : {
223             "Debug" : true,
224             "MemoryGuard" : true,
225             "PreprocessorDefinitions" : [
226                "BUILDING_ECERE_COM",
227                "_DEBUG",
228                "MEMINFO",
229                "REDZONE=32"
230             ]
231          }
232       },
233       {
234          "Name" : "MemoryGuardRelease",
235          "Options" : {
236             "MemoryGuard" : true,
237             "Optimization" : "Speed",
238             "PreprocessorDefinitions" : [
239                "BUILDING_ECERE_COM",
240                "MEMINFO",
241                "REDZONE=256"
242             ],
243             "FastMath" : true
244          }
245       },
246       {
247          "Name" : "Profile",
248          "Options" : {
249             "Debug" : true,
250             "Profile" : true,
251             "Optimization" : "Speed",
252             "PreprocessorDefinitions" : [
253                "BUILDING_ECERE_COM",
254                "ECERE_STATIC"
255             ],
256             "TargetType" : "StaticLibrary",
257             "TargetFileName" : "ecereStatic",
258             "FastMath" : true
259          }
260       },
261       {
262          "Name" : "Release",
263          "Options" : {
264             "Warnings" : "All",
265             "NoLineNumbers" : true,
266             "Optimization" : "Speed",
267             "FastMath" : true,
268             "PostbuildCommands" : [
269                "$(call mkdir,../$(SODESTDIR))",
270                "$(call cp,$(TARGET),../$(SODESTDIR))"
271             ],
272             "InstallCommands" : [
273                "$(call cp,$(TARGET),\"$(DESTLIBDIR)/\")",
274                "$(if $(WINDOWS_HOST),,ln -sf $(LP)$(MODULE)$(SOV) $(DESTLIBDIR)/$(LP)$(MODULE)$(SO).0)",
275                "$(if $(WINDOWS_HOST),,ln -sf $(LP)$(MODULE)$(SOV) $(DESTLIBDIR)/$(LP)$(MODULE)$(SO))"
276             ]
277          }
278       },
279       {
280          "Name" : "Static",
281          "Options" : {
282             "Optimization" : "Size",
283             "PreprocessorDefinitions" : [
284                "BUILDING_ECERE_COM",
285                "ECERE_STATIC"
286             ],
287             "TargetType" : "StaticLibrary",
288             "TargetFileName" : "ecereStatic",
289             "Libraries" : [
290                "jpeg",
291                "png",
292                "z",
293                "freetype"
294             ],
295             "Compress" : true
296          }
297       },
298       {
299          "Name" : "Tight",
300          "Options" : {
301             "Optimization" : "Size",
302             "PreprocessorDefinitions" : [
303                "BUILDING_ECERE_COM"
304             ],
305             "Compress" : true
306          }
307       },
308       {
309          "Name" : "PACS",
310          "Options" : {
311             "Optimization" : "Size",
312             "PreprocessorDefinitions" : [
313                "ECERE_STATIC",
314                "ECERE_NOBLENDING",
315                "ECERE_NO3D",
316                "ECERE_NODINPUT",
317                "ECERE_NOTRUETYPE",
318                "ECERE_NOSSL"
319             ],
320             "TargetType" : "StaticLibrary",
321             "TargetFileName" : "ecerePACS"
322          }
323       },
324       {
325          "Name" : "Bootstrap",
326          "Options" : {
327             "NoLineNumbers" : true,
328             "PreprocessorDefinitions" : [
329                "BUILDING_ECERE_COM",
330                "ECERE_STATIC",
331                "ECERE_BOOTSTRAP"
332             ],
333             "IncludeDirs" : [
334                "../compiler/bootstrap/include"
335             ],
336             "TargetType" : "StaticLibrary",
337             "TargetFileName" : "ecereBootstrap",
338             "Libraries" : [
339
340             ]
341          }
342       },
343       {
344          "Name" : "Vanilla",
345          "Options" : {
346             "Warnings" : "None",
347             "NoLineNumbers" : true,
348             "Optimization" : "Size",
349             "PreprocessorDefinitions" : [
350                "BUILDING_ECERE_COM",
351                "ECERE_STATIC",
352                "ECERE_VANILLA",
353                "NOBLENDING"
354             ],
355             "TargetType" : "StaticLibrary",
356             "TargetFileName" : "ecereVanilla",
357             "PostbuildCommands" : [
358                "$(call cp,$(TARGET),../obj/$(PLATFORM)$(COMPILER_SUFFIX)$(DEBUG_SUFFIX)/lib/)"
359             ],
360             "InstallCommands" : [
361                "$(if $(WINDOWS_HOST),$(call cp,$(TARGET),\"$(DESTSLIBDIR)/\"),install $(INSTALL_FLAGS) $(TARGET) $(DESTSLIBDIR)/$(MODULE)$(A))"
362             ]
363          }
364       },
365       {
366          "Name" : "WSMS",
367          "Options" : {
368             "Optimization" : "Size",
369             "PreprocessorDefinitions" : [
370                "ECERE_STATIC",
371                "ECERE_NO3D",
372                "ECERE_NOSSL"
373             ],
374             "TargetType" : "StaticLibrary",
375             "TargetFileName" : "ecereWSMS"
376          },
377          "Platforms" : [
378             {
379                "Name" : "win32",
380                "Options" : {
381                   "PreprocessorDefinitions" : [
382                      "ECERE_NOTRUETYPE",
383                      "ECERE_NOBLENDING",
384                      "ECERE_NODINPUT"
385                   ]
386                }
387             }
388          ]
389       },
390       {
391          "Name" : "Installer",
392          "Options" : {
393             "NoLineNumbers" : true,
394             "Optimization" : "Size",
395             "PreprocessorDefinitions" : [
396                "BUILDING_ECERE_COM",
397                "ECERE_STATIC",
398                "ECERE_NO3D",
399                "ECERE_ONEDRIVER",
400                "ECERE_NONET",
401                "ECERE_NODINPUT"
402             ],
403             "TargetType" : "StaticLibrary",
404             "TargetFileName" : "ecereInstaller"
405          }
406       },
407       {
408          "Name" : "Android",
409          "Options" : {
410             "Debug" : true,
411             "Optimization" : "Speed",
412             "PreprocessorDefinitions" : [
413                "ECERE_NOFONTCONFIG",
414                "HIGH_DPI",
415                "ECERE_NOSSL",
416                "_GLES"
417             ],
418             "IncludeDirs" : [
419                "../deps/jpeg-9a",
420                "../deps/libpng-1.4.0",
421                "../deps/libungif-4.1.1/lib",
422                "../deps/zlib",
423                "../deps/freetype-2.3.12/include",
424                "../deps/glext"
425             ],
426             "FastMath" : true
427          },
428          "Platforms" : [
429             {
430                "Name" : "linux",
431                "Options" : {
432                   "Libraries" : [
433                      "m",
434                      "dl",
435                      "ungif",
436                      "log",
437                      "android",
438                      "EGL",
439                      "GLESv1_CM"
440                   ],
441                   "LibraryDirs" : [
442                      "../deps/libungif-4.1.1/obj/release.$(PLATFORM).$(COMPILER)",
443                      "../deps/libpng-1.6.12/obj/release.$(PLATFORM).$(COMPILER)",
444                      "../deps/jpeg-9a/obj/release.$(PLATFORM).$(COMPILER)",
445                      "../deps/freetype-2.3.12/obj/release.$(PLATFORM).$(COMPILER)"
446                   ]
447                }
448             }
449          ]
450       },
451       {
452          "Name" : "GLES",
453          "Options" : {
454             "PreprocessorDefinitions" : [
455                "_GLES"
456             ]
457          }
458       },
459       {
460          "Name" : "StaticGLES",
461          "Options" : {
462             "Optimization" : "Speed",
463             "PreprocessorDefinitions" : [
464                "_GLES",
465                "ECERE_STATIC",
466                "ECERE_NOSSL"
467             ],
468             "TargetType" : "StaticLibrary",
469             "TargetFileName" : "ecereStatic",
470             "CompilerOptions" : [
471                "-mmmx",
472                "-msse4"
473             ],
474             "FastMath" : true
475          }
476       }
477    ],
478    "Files" : [
479       {
480          "Folder" : "src",
481          "Files" : [
482             {
483                "Folder" : "sys",
484                "Files" : [
485                   "Archive.ec",
486                   {
487                      "FileName" : "BufferedFile.ec",
488                      "Configurations" : [
489                         {
490                            "Name" : "Bootstrap",
491                            "Options" : {
492                               "ExcludeFromBuild" : false
493                            }
494                         }
495                      ]
496                   },
497                   "Date.ec",
498                   {
499                      "FileName" : "DualPipe.ec",
500                      "Configurations" : [
501                         {
502                            "Name" : "Bootstrap",
503                            "Options" : {
504                               "ExcludeFromBuild" : false
505                            }
506                         }
507                      ]
508                   },
509                   "EARArchive.ec",
510                   {
511                      "FileName" : "File.ec",
512                      "Configurations" : [
513                         {
514                            "Name" : "Bootstrap",
515                            "Options" : {
516                               "ExcludeFromBuild" : false
517                            }
518                         }
519                      ]
520                   },
521                   "FileMonitor.ec",
522                   "GlobalAppSettings.ec",
523                   "JSON.ec",
524                   "JSONGlobalSettings.ec",
525                   {
526                      "FileName" : "memory.ec",
527                      "Configurations" : [
528                         {
529                            "Name" : "Bootstrap",
530                            "Options" : {
531                               "ExcludeFromBuild" : false
532                            }
533                         }
534                      ]
535                   },
536                   {
537                      "FileName" : "Mutex.ec",
538                      "Options" : {
539                         "PreprocessorDefinitions" : [
540                            "ECERE_COM_MODULE"
541                         ]
542                      },
543                      "Configurations" : [
544                         {
545                            "Name" : "MemoryGuard",
546                            "Options" : {
547                               "MemoryGuard" : false
548                            }
549                         },
550                         {
551                            "Name" : "MemoryGuardRelease",
552                            "Options" : {
553                               "MemoryGuard" : false
554                            }
555                         }
556                      ]
557                   },
558                   "Semaphore.ec",
559                   {
560                      "FileName" : "System.ec",
561                      "Configurations" : [
562                         {
563                            "Name" : "Bootstrap",
564                            "Options" : {
565                               "ExcludeFromBuild" : false
566                            }
567                         }
568                      ]
569                   },
570                   {
571                      "FileName" : "TempFile.ec",
572                      "Configurations" : [
573                         {
574                            "Name" : "Bootstrap",
575                            "Options" : {
576                               "ExcludeFromBuild" : false
577                            }
578                         }
579                      ]
580                   },
581                   {
582                      "FileName" : "Thread.ec",
583                      "Configurations" : [
584                         {
585                            "Name" : "MemoryGuard",
586                            "Options" : {
587                               "MemoryGuard" : false
588                            }
589                         },
590                         {
591                            "Name" : "MemoryGuardRelease",
592                            "Options" : {
593                               "MemoryGuard" : false
594                            }
595                         }
596                      ]
597                   },
598                   "Time.ec",
599                   "unicode.ec",
600                   "units.ec",
601                   "File.c",
602                   "DualPipe.c",
603                   "System.c",
604                   {
605                      "FileName" : "i18n.ec",
606                      "Options" : {
607                         "PreprocessorDefinitions" : [
608                            "ECERE_COM_MODULE"
609                         ]
610                      },
611                      "Configurations" : [
612                         {
613                            "Name" : "Bootstrap",
614                            "Options" : {
615                               "ExcludeFromBuild" : false
616                            }
617                         }
618                      ]
619                   },
620                   "Condition.ec"
621                ],
622                "Configurations" : [
623                   {
624                      "Name" : "Bootstrap",
625                      "Options" : {
626                         "ExcludeFromBuild" : true
627                      }
628                   }
629                ]
630             },
631             {
632                "Folder" : "gfx",
633                "Files" : [
634                   {
635                      "Folder" : "3D",
636                      "Files" : [
637                         {
638                            "Folder" : "meshes",
639                            "Files" : [
640                               "Cube.ec",
641                               "SkyBox.ec",
642                               "Sphere.ec"
643                            ]
644                         },
645                         {
646                            "Folder" : "models",
647                            "Files" : [
648                               "Object3DSFormat.ec"
649                            ]
650                         },
651                         "Camera.ec",
652                         "Matrix.ec",
653                         "Mesh.ec",
654                         "Object.ec",
655                         "Plane.ec",
656                         "Quaternion.ec",
657                         "Vector3D.ec"
658                      ],
659                      "Configurations" : [
660                         {
661                            "Name" : "PACS",
662                            "Options" : {
663                               "ExcludeFromBuild" : true
664                            }
665                         },
666                         {
667                            "Name" : "Vanilla",
668                            "Options" : {
669                               "ExcludeFromBuild" : true
670                            }
671                         },
672                         {
673                            "Name" : "WSMS",
674                            "Options" : {
675                               "ExcludeFromBuild" : true
676                            }
677                         },
678                         {
679                            "Name" : "Installer",
680                            "Platforms" : [
681                               {
682                                  "Name" : "win32",
683                                  "Options" : {
684                                     "ExcludeFromBuild" : true
685                                  }
686                               }
687                            ]
688                         }
689                      ]
690                   },
691                   {
692                      "Folder" : "bitmaps",
693                      "Files" : [
694                         {
695                            "FileName" : "BMPFormat.ec",
696                            "Configurations" : [
697                               {
698                                  "Name" : "Vanilla",
699                                  "Options" : {
700                                     "ExcludeFromBuild" : false
701                                  }
702                               }
703                            ]
704                         },
705                         {
706                            "FileName" : "GIFFormat.ec",
707                            "Configurations" : [
708                               {
709                                  "Name" : "PACS",
710                                  "Options" : {
711                                     "ExcludeFromBuild" : true
712                                  }
713                               },
714                               {
715                                  "Name" : "WSMS",
716                                  "Options" : {
717                                     "ExcludeFromBuild" : true
718                                  }
719                               },
720                               {
721                                  "Name" : "Installer",
722                                  "Platforms" : [
723                                     {
724                                        "Name" : "win32",
725                                        "Options" : {
726                                           "ExcludeFromBuild" : true
727                                        }
728                                     }
729                                  ]
730                               },
731                               {
732                                  "Name" : "StaticGLES",
733                                  "Options" : {
734                                     "ExcludeFromBuild" : true
735                                  }
736                               }
737                            ]
738                         },
739                         {
740                            "FileName" : "JPEGFormat.ec",
741                            "Configurations" : [
742                               {
743                                  "Name" : "WSMS",
744                                  "Options" : {
745                                     "ExcludeFromBuild" : true
746                                  }
747                               },
748                               {
749                                  "Name" : "Installer",
750                                  "Platforms" : [
751                                     {
752                                        "Name" : "win32",
753                                        "Options" : {
754                                           "ExcludeFromBuild" : true
755                                        }
756                                     }
757                                  ]
758                               }
759                            ]
760                         },
761                         {
762                            "FileName" : "PCXFormat.ec",
763                            "Configurations" : [
764                               {
765                                  "Name" : "PACS",
766                                  "Options" : {
767                                     "ExcludeFromBuild" : true
768                                  }
769                               }
770                            ]
771                         },
772                         "PNGFormat.ec",
773                         {
774                            "FileName" : "RGBFormat.ec",
775                            "Configurations" : [
776                               {
777                                  "Name" : "PACS",
778                                  "Options" : {
779                                     "ExcludeFromBuild" : false
780                                  }
781                               },
782                               {
783                                  "Name" : "WSMS",
784                                  "Options" : {
785                                     "ExcludeFromBuild" : true
786                                  }
787                               },
788                               {
789                                  "Name" : "Installer",
790                                  "Platforms" : [
791                                     {
792                                        "Name" : "win32",
793                                        "Options" : {
794                                           "ExcludeFromBuild" : true
795                                        }
796                                     }
797                                  ]
798                               }
799                            ]
800                         }
801                      ],
802                      "Configurations" : [
803                         {
804                            "Name" : "Vanilla",
805                            "Options" : {
806                               "ExcludeFromBuild" : true
807                            }
808                         }
809                      ]
810                   },
811                   {
812                      "Folder" : "drivers",
813                      "Files" : [
814                         {
815                            "Folder" : "harfbuzz",
816                            "Files" : [
817                               {
818                                  "Folder" : "unicode",
819                                  "Files" : [
820                                     {
821                                        "Folder" : "tables",
822                                        "Files" : [
823                                           "category-properties.h",
824                                           "combining-properties.h",
825                                           "grapheme-break-properties.h",
826                                           "script-properties.h"
827                                        ]
828                                     },
829                                     "harfbuzz-freetype.h",
830                                     "harfbuzz-unicode.h",
831                                     "harfbuzz-freetype.c",
832                                     "harfbuzz-unicode-tables.c",
833                                     "harfbuzz-unicode.c"
834                                  ]
835                               },
836                               "harfbuzz-arabic.c",
837                               "harfbuzz-buffer.c",
838                               "harfbuzz-buffer.h",
839                               "harfbuzz-external.h",
840                               "harfbuzz-gdef-private.h",
841                               "harfbuzz-gdef.c",
842                               "harfbuzz-gdef.h",
843                               "harfbuzz-global.h",
844                               "harfbuzz-gpos-private.h",
845                               "harfbuzz-gpos.c",
846                               "harfbuzz-gpos.h",
847                               "harfbuzz-gsub-private.h",
848                               "harfbuzz-gsub.c",
849                               "harfbuzz-gsub.h",
850                               "harfbuzz-hangul.c",
851                               "harfbuzz-hebrew.c",
852                               "harfbuzz-impl.h",
853                               "harfbuzz-indic.c",
854                               "harfbuzz-khmer.c",
855                               "harfbuzz-myanmar.c",
856                               "harfbuzz-open-private.h",
857                               "harfbuzz-open.c",
858                               "harfbuzz-open.h",
859                               "harfbuzz-shape.h",
860                               "harfbuzz-shaper-private.h",
861                               "harfbuzz-shaper.c",
862                               "harfbuzz-shaper.h",
863                               "harfbuzz-stream.c",
864                               "harfbuzz-stream.h",
865                               "harfbuzz-tibetan.c",
866                               "harfbuzz.h",
867                               "harfbuzz-impl.c",
868                               "harfbuzz-thai.c",
869                               "harfbuzz-buffer-private.h",
870                               "harfbuzz-dump.h",
871                               "harfbuzz-stream-private.h"
872                            ],
873                            "Options" : {
874                               "ExcludeFromBuild" : false
875                            },
876                            "Configurations" : [
877                               {
878                                  "Name" : "Bootstrap",
879                                  "Options" : {
880                                     "ExcludeFromBuild" : true
881                                  }
882                               },
883                               {
884                                  "Name" : "Vanilla",
885                                  "Platforms" : [
886                                     {
887                                        "Name" : "win32",
888                                        "Options" : {
889                                           "ExcludeFromBuild" : true
890                                        }
891                                     }
892                                  ]
893                               },
894                               {
895                                  "Name" : "WSMS",
896                                  "Platforms" : [
897                                     {
898                                        "Name" : "win32",
899                                        "Options" : {
900                                           "ExcludeFromBuild" : true
901                                        }
902                                     }
903                                  ]
904                               },
905                               {
906                                  "Name" : "Installer",
907                                  "Options" : {
908                                     "ExcludeFromBuild" : true
909                                  }
910                               }
911                            ]
912                         },
913                         {
914                            "Folder" : "gl3",
915                            "Files" : [
916                               {
917                                  "FileName" : "gl_core_3_3.c",
918                                  "Configurations" : [
919                                     {
920                                        "Name" : "Debug",
921                                        "Options" : {
922                                           "ExcludeFromBuild" : true
923                                        }
924                                     },
925                                     {
926                                        "Name" : "GLES",
927                                        "Options" : {
928                                           "ExcludeFromBuild" : true
929                                        }
930                                     }
931                                  ]
932                               },
933                               "gl_core_3_3.h",
934                               {
935                                  "FileName" : "glab.ec",
936                                  "Configurations" : [
937                                     {
938                                        "Name" : "Debug",
939                                        "Options" : {
940                                           "ExcludeFromBuild" : false
941                                        }
942                                     },
943                                     {
944                                        "Name" : "GLES",
945                                        "Options" : {
946                                           "ExcludeFromBuild" : false
947                                        }
948                                     },
949                                     {
950                                        "Name" : "Release",
951                                        "Options" : {
952                                           "ExcludeFromBuild" : false
953                                        }
954                                     },
955                                     {
956                                        "Name" : "MemoryGuard",
957                                        "Options" : {
958                                           "ExcludeFromBuild" : false
959                                        }
960                                     }
961                                  ]
962                               },
963                               {
964                                  "FileName" : "immediate.ec",
965                                  "Configurations" : [
966                                     {
967                                        "Name" : "Debug",
968                                        "Options" : {
969                                           "ExcludeFromBuild" : false
970                                        }
971                                     },
972                                     {
973                                        "Name" : "GLES",
974                                        "Options" : {
975                                           "ExcludeFromBuild" : false
976                                        }
977                                     },
978                                     {
979                                        "Name" : "Release",
980                                        "Options" : {
981                                           "ExcludeFromBuild" : false
982                                        }
983                                     },
984                                     {
985                                        "Name" : "MemoryGuard",
986                                        "Options" : {
987                                           "ExcludeFromBuild" : false
988                                        }
989                                     }
990                                  ]
991                               },
992                               {
993                                  "FileName" : "matrixStack.ec",
994                                  "Configurations" : [
995                                     {
996                                        "Name" : "Debug",
997                                        "Options" : {
998                                           "ExcludeFromBuild" : false
999                                        }
1000                                     },
1001                                     {
1002                                        "Name" : "GLES",
1003                                        "Options" : {
1004                                           "ExcludeFromBuild" : false
1005                                        }
1006                                     },
1007                                     {
1008                                        "Name" : "Release",
1009                                        "Options" : {
1010                                           "ExcludeFromBuild" : false
1011                                        }
1012                                     },
1013                                     {
1014                                        "Name" : "MemoryGuard",
1015                                        "Options" : {
1016                                           "ExcludeFromBuild" : false
1017                                        }
1018                                     }
1019                                  ]
1020                               },
1021                               "wglDefs.h",
1022                               "egl.ec",
1023                               {
1024                                  "FileName" : "shading.ec",
1025                                  "Configurations" : [
1026                                     {
1027                                        "Name" : "GLES",
1028                                        "Options" : {
1029                                           "ExcludeFromBuild" : false
1030                                        }
1031                                     },
1032                                     {
1033                                        "Name" : "Debug",
1034                                        "Options" : {
1035                                           "ExcludeFromBuild" : false
1036                                        }
1037                                     },
1038                                     {
1039                                        "Name" : "Release",
1040                                        "Options" : {
1041                                           "ExcludeFromBuild" : false
1042                                        }
1043                                     },
1044                                     {
1045                                        "Name" : "MemoryGuard",
1046                                        "Options" : {
1047                                           "ExcludeFromBuild" : false
1048                                        }
1049                                     }
1050                                  ]
1051                               },
1052                               {
1053                                  "FileName" : "gl_compat_4_4.c",
1054                                  "Configurations" : [
1055                                     {
1056                                        "Name" : "GLES",
1057                                        "Options" : {
1058                                           "ExcludeFromBuild" : false
1059                                        }
1060                                     },
1061                                     {
1062                                        "Name" : "Debug",
1063                                        "Options" : {
1064                                           "ExcludeFromBuild" : false
1065                                        }
1066                                     },
1067                                     {
1068                                        "Name" : "Release",
1069                                        "Options" : {
1070                                           "ExcludeFromBuild" : false
1071                                        }
1072                                     },
1073                                     {
1074                                        "Name" : "MemoryGuard",
1075                                        "Options" : {
1076                                           "ExcludeFromBuild" : false
1077                                        }
1078                                     }
1079                                  ]
1080                               },
1081                               "gl_compat_4_4.h",
1082                               "fixed.frag",
1083                               "fixed.vertex"
1084                            ]
1085                         },
1086                         {
1087                            "FileName" : "Direct3D8DisplayDriver.ec",
1088                            "Platforms" : [
1089                               {
1090                                  "Name" : "win32",
1091                                  "Options" : {
1092                                     "ExcludeFromBuild" : false
1093                                  }
1094                               }
1095                            ],
1096                            "Configurations" : [
1097                               {
1098                                  "Name" : "WSMS",
1099                                  "Platforms" : [
1100                                     {
1101                                        "Name" : "win32",
1102                                        "Options" : {
1103                                           "ExcludeFromBuild" : true
1104                                        }
1105                                     }
1106                                  ]
1107                               },
1108                               {
1109                                  "Name" : "Vanilla",
1110                                  "Platforms" : [
1111                                     {
1112                                        "Name" : "win32",
1113                                        "Options" : {
1114                                           "ExcludeFromBuild" : true
1115                                        }
1116                                     }
1117                                  ]
1118                               },
1119                               {
1120                                  "Name" : "PACS",
1121                                  "Platforms" : [
1122                                     {
1123                                        "Name" : "win32",
1124                                        "Options" : {
1125                                           "ExcludeFromBuild" : true
1126                                        }
1127                                     }
1128                                  ]
1129                               },
1130                               {
1131                                  "Name" : "Bootstrap",
1132                                  "Platforms" : [
1133                                     {
1134                                        "Name" : "win32",
1135                                        "Options" : {
1136                                           "ExcludeFromBuild" : true
1137                                        }
1138                                     }
1139                                  ]
1140                               },
1141                               {
1142                                  "Name" : "Installer",
1143                                  "Platforms" : [
1144                                     {
1145                                        "Name" : "win32",
1146                                        "Options" : {
1147                                           "ExcludeFromBuild" : true
1148                                        }
1149                                     }
1150                                  ]
1151                               }
1152                            ]
1153                         },
1154                         {
1155                            "FileName" : "Direct3D9DisplayDriver.ec",
1156                            "Platforms" : [
1157                               {
1158                                  "Name" : "win32",
1159                                  "Options" : {
1160                                     "ExcludeFromBuild" : false
1161                                  }
1162                               }
1163                            ],
1164                            "Configurations" : [
1165                               {
1166                                  "Name" : "WSMS",
1167                                  "Platforms" : [
1168                                     {
1169                                        "Name" : "win32",
1170                                        "Options" : {
1171                                           "ExcludeFromBuild" : true
1172                                        }
1173                                     }
1174                                  ]
1175                               },
1176                               {
1177                                  "Name" : "Vanilla",
1178                                  "Platforms" : [
1179                                     {
1180                                        "Name" : "win32",
1181                                        "Options" : {
1182                                           "ExcludeFromBuild" : true
1183                                        }
1184                                     }
1185                                  ]
1186                               },
1187                               {
1188                                  "Name" : "PACS",
1189                                  "Platforms" : [
1190                                     {
1191                                        "Name" : "win32",
1192                                        "Options" : {
1193                                           "ExcludeFromBuild" : true
1194                                        }
1195                                     }
1196                                  ]
1197                               },
1198                               {
1199                                  "Name" : "Bootstrap",
1200                                  "Platforms" : [
1201                                     {
1202                                        "Name" : "win32",
1203                                        "Options" : {
1204                                           "ExcludeFromBuild" : true
1205                                        }
1206                                     }
1207                                  ]
1208                               },
1209                               {
1210                                  "Name" : "Installer",
1211                                  "Platforms" : [
1212                                     {
1213                                        "Name" : "win32",
1214                                        "Options" : {
1215                                           "ExcludeFromBuild" : true
1216                                        }
1217                                     }
1218                                  ]
1219                               }
1220                            ]
1221                         },
1222                         {
1223                            "FileName" : "DirectDrawDisplayDriver.ec",
1224                            "Platforms" : [
1225                               {
1226                                  "Name" : "win32",
1227                                  "Options" : {
1228                                     "ExcludeFromBuild" : false
1229                                  }
1230                               }
1231                            ],
1232                            "Configurations" : [
1233                               {
1234                                  "Name" : "WSMS",
1235                                  "Platforms" : [
1236                                     {
1237                                        "Name" : "win32",
1238                                        "Options" : {
1239                                           "ExcludeFromBuild" : true
1240                                        }
1241                                     }
1242                                  ]
1243                               },
1244                               {
1245                                  "Name" : "Vanilla",
1246                                  "Platforms" : [
1247                                     {
1248                                        "Name" : "win32",
1249                                        "Options" : {
1250                                           "ExcludeFromBuild" : true
1251                                        }
1252                                     }
1253                                  ]
1254                               },
1255                               {
1256                                  "Name" : "PACS",
1257                                  "Platforms" : [
1258                                     {
1259                                        "Name" : "win32",
1260                                        "Options" : {
1261                                           "ExcludeFromBuild" : true
1262                                        }
1263                                     }
1264                                  ]
1265                               },
1266                               {
1267                                  "Name" : "Bootstrap",
1268                                  "Platforms" : [
1269                                     {
1270                                        "Name" : "win32",
1271                                        "Options" : {
1272                                           "ExcludeFromBuild" : true
1273                                        }
1274                                     }
1275                                  ]
1276                               },
1277                               {
1278                                  "Name" : "Installer",
1279                                  "Platforms" : [
1280                                     {
1281                                        "Name" : "win32",
1282                                        "Options" : {
1283                                           "ExcludeFromBuild" : true
1284                                        }
1285                                     }
1286                                  ]
1287                               }
1288                            ]
1289                         },
1290                         {
1291                            "FileName" : "GDIDisplayDriver.ec",
1292                            "Platforms" : [
1293                               {
1294                                  "Name" : "win32",
1295                                  "Options" : {
1296                                     "ExcludeFromBuild" : false
1297                                  }
1298                               }
1299                            ],
1300                            "Configurations" : [
1301                               {
1302                                  "Name" : "Bootstrap",
1303                                  "Platforms" : [
1304                                     {
1305                                        "Name" : "win32",
1306                                        "Options" : {
1307                                           "ExcludeFromBuild" : true
1308                                        }
1309                                     }
1310                                  ]
1311                               }
1312                            ]
1313                         },
1314                         {
1315                            "FileName" : "lfbBlit.ec",
1316                            "Options" : {
1317                               "ExcludeFromBuild" : false
1318                            },
1319                            "Configurations" : [
1320                               {
1321                                  "Name" : "Bootstrap",
1322                                  "Options" : {
1323                                     "ExcludeFromBuild" : true
1324                                  }
1325                               }
1326                            ]
1327                         },
1328                         {
1329                            "FileName" : "lfbConvert.ec",
1330                            "Options" : {
1331                               "ExcludeFromBuild" : false
1332                            },
1333                            "Configurations" : [
1334                               {
1335                                  "Name" : "Bootstrap",
1336                                  "Options" : {
1337                                     "ExcludeFromBuild" : true
1338                                  }
1339                               }
1340                            ]
1341                         },
1342                         {
1343                            "FileName" : "LFBDisplayDriver.ec",
1344                            "Options" : {
1345                               "ExcludeFromBuild" : false
1346                            },
1347                            "Configurations" : [
1348                               {
1349                                  "Name" : "Bootstrap",
1350                                  "Options" : {
1351                                     "ExcludeFromBuild" : true
1352                                  }
1353                               }
1354                            ]
1355                         },
1356                         {
1357                            "FileName" : "NCursesDisplayDriver.ec",
1358                            "Platforms" : [
1359                               {
1360                                  "Name" : "linux",
1361                                  "Options" : {
1362                                     "ExcludeFromBuild" : false
1363                                  }
1364                               },
1365                               {
1366                                  "Name" : "apple",
1367                                  "Options" : {
1368                                     "ExcludeFromBuild" : false
1369                                  }
1370                               }
1371                            ],
1372                            "Configurations" : [
1373                               {
1374                                  "Name" : "WSMS",
1375                                  "Platforms" : [
1376                                     {
1377                                        "Name" : "win32",
1378                                        "Options" : {
1379                                           "ExcludeFromBuild" : true
1380                                        }
1381                                     }
1382                                  ]
1383                               },
1384                               {
1385                                  "Name" : "Bootstrap",
1386                                  "Platforms" : [
1387                                     {
1388                                        "Name" : "linux",
1389                                        "Options" : {
1390                                           "ExcludeFromBuild" : true
1391                                        }
1392                                     },
1393                                     {
1394                                        "Name" : "apple",
1395                                        "Options" : {
1396                                           "ExcludeFromBuild" : true
1397                                        }
1398                                     }
1399                                  ]
1400                               },
1401                               {
1402                                  "Name" : "Android",
1403                                  "Platforms" : [
1404                                     {
1405                                        "Name" : "linux",
1406                                        "Options" : {
1407                                           "ExcludeFromBuild" : true
1408                                        }
1409                                     }
1410                                  ]
1411                               }
1412                            ]
1413                         },
1414                         {
1415                            "FileName" : "OpenGLDisplayDriver.ec",
1416                            "Options" : {
1417                               "ExcludeFromBuild" : false
1418                            },
1419                            "Configurations" : [
1420                               {
1421                                  "Name" : "WSMS",
1422                                  "Options" : {
1423                                     "ExcludeFromBuild" : true
1424                                  }
1425                               },
1426                               {
1427                                  "Name" : "Vanilla",
1428                                  "Options" : {
1429                                     "ExcludeFromBuild" : true
1430                                  }
1431                               },
1432                               {
1433                                  "Name" : "PACS",
1434                                  "Options" : {
1435                                     "ExcludeFromBuild" : true
1436                                  }
1437                               },
1438                               {
1439                                  "Name" : "Bootstrap",
1440                                  "Options" : {
1441                                     "ExcludeFromBuild" : true
1442                                  }
1443                               },
1444                               {
1445                                  "Name" : "Installer",
1446                                  "Options" : {
1447                                     "ExcludeFromBuild" : true
1448                                  }
1449                               }
1450                            ]
1451                         },
1452                         {
1453                            "FileName" : "Win32BitmapPrinterDisplayDriver.ec",
1454                            "Platforms" : [
1455                               {
1456                                  "Name" : "win32",
1457                                  "Options" : {
1458                                     "ExcludeFromBuild" : false
1459                                  }
1460                               }
1461                            ],
1462                            "Configurations" : [
1463                               {
1464                                  "Name" : "WSMS",
1465                                  "Platforms" : [
1466                                     {
1467                                        "Name" : "win32",
1468                                        "Options" : {
1469                                           "ExcludeFromBuild" : true
1470                                        }
1471                                     }
1472                                  ]
1473                               },
1474                               {
1475                                  "Name" : "Vanilla",
1476                                  "Platforms" : [
1477                                     {
1478                                        "Name" : "win32",
1479                                        "Options" : {
1480                                           "ExcludeFromBuild" : true
1481                                        }
1482                                     }
1483                                  ]
1484                               },
1485                               {
1486                                  "Name" : "PACS",
1487                                  "Platforms" : [
1488                                     {
1489                                        "Name" : "win32",
1490                                        "Options" : {
1491                                           "ExcludeFromBuild" : true
1492                                        }
1493                                     }
1494                                  ]
1495                               },
1496                               {
1497                                  "Name" : "Bootstrap",
1498                                  "Platforms" : [
1499                                     {
1500                                        "Name" : "win32",
1501                                        "Options" : {
1502                                           "ExcludeFromBuild" : true
1503                                        }
1504                                     }
1505                                  ]
1506                               },
1507                               {
1508                                  "Name" : "Installer",
1509                                  "Platforms" : [
1510                                     {
1511                                        "Name" : "win32",
1512                                        "Options" : {
1513                                           "ExcludeFromBuild" : true
1514                                        }
1515                                     }
1516                                  ]
1517                               }
1518                            ]
1519                         },
1520                         {
1521                            "FileName" : "CocoaOpenGLDisplayDriver.ec",
1522                            "Options" : {
1523                               "IncludeDirs" : [
1524                                  "src/gui/drivers/cocoa"
1525                               ]
1526                            },
1527                            "Platforms" : [
1528                               {
1529                                  "Name" : "apple",
1530                                  "Options" : {
1531                                     "ExcludeFromBuild" : false
1532                                  }
1533                               }
1534                            ],
1535                            "Configurations" : [
1536                               {
1537                                  "Name" : "Vanilla",
1538                                  "Options" : {
1539                                     "ExcludeFromBuild" : true
1540                                  },
1541                                  "Platforms" : [
1542                                     {
1543                                        "Name" : "apple",
1544                                        "Options" : {
1545                                           "ExcludeFromBuild" : true
1546                                        }
1547                                     }
1548                                  ]
1549                               },
1550                               {
1551                                  "Name" : "Bootstrap",
1552                                  "Platforms" : [
1553                                     {
1554                                        "Name" : "apple",
1555                                        "Options" : {
1556                                           "ExcludeFromBuild" : true
1557                                        }
1558                                     }
1559                                  ]
1560                               }
1561                            ]
1562                         },
1563                         {
1564                            "FileName" : "Win32ConsoleDisplayDriver.ec",
1565                            "Platforms" : [
1566                               {
1567                                  "Name" : "win32",
1568                                  "Options" : {
1569                                     "ExcludeFromBuild" : false
1570                                  }
1571                               }
1572                            ],
1573                            "Configurations" : [
1574                               {
1575                                  "Name" : "WSMS",
1576                                  "Platforms" : [
1577                                     {
1578                                        "Name" : "win32",
1579                                        "Options" : {
1580                                           "ExcludeFromBuild" : true
1581                                        }
1582                                     }
1583                                  ]
1584                               },
1585                               {
1586                                  "Name" : "Vanilla",
1587                                  "Platforms" : [
1588                                     {
1589                                        "Name" : "win32",
1590                                        "Options" : {
1591                                           "ExcludeFromBuild" : true
1592                                        }
1593                                     }
1594                                  ]
1595                               },
1596                               {
1597                                  "Name" : "PACS",
1598                                  "Platforms" : [
1599                                     {
1600                                        "Name" : "win32",
1601                                        "Options" : {
1602                                           "ExcludeFromBuild" : true
1603                                        }
1604                                     }
1605                                  ]
1606                               },
1607                               {
1608                                  "Name" : "Bootstrap",
1609                                  "Platforms" : [
1610                                     {
1611                                        "Name" : "win32",
1612                                        "Options" : {
1613                                           "ExcludeFromBuild" : true
1614                                        }
1615                                     }
1616                                  ]
1617                               },
1618                               {
1619                                  "Name" : "Installer",
1620                                  "Platforms" : [
1621                                     {
1622                                        "Name" : "win32",
1623                                        "Options" : {
1624                                           "ExcludeFromBuild" : true
1625                                        }
1626                                     }
1627                                  ]
1628                               }
1629                            ]
1630                         },
1631                         {
1632                            "FileName" : "Win32PrinterDisplayDriver.ec",
1633                            "Platforms" : [
1634                               {
1635                                  "Name" : "win32",
1636                                  "Options" : {
1637                                     "ExcludeFromBuild" : false
1638                                  }
1639                               }
1640                            ],
1641                            "Configurations" : [
1642                               {
1643                                  "Name" : "Vanilla",
1644                                  "Platforms" : [
1645                                     {
1646                                        "Name" : "win32",
1647                                        "Options" : {
1648                                           "ExcludeFromBuild" : true
1649                                        }
1650                                     }
1651                                  ]
1652                               },
1653                               {
1654                                  "Name" : "PACS",
1655                                  "Platforms" : [
1656                                     {
1657                                        "Name" : "win32",
1658                                        "Options" : {
1659                                           "ExcludeFromBuild" : true
1660                                        }
1661                                     }
1662                                  ]
1663                               },
1664                               {
1665                                  "Name" : "Bootstrap",
1666                                  "Platforms" : [
1667                                     {
1668                                        "Name" : "win32",
1669                                        "Options" : {
1670                                           "ExcludeFromBuild" : true
1671                                        }
1672                                     }
1673                                  ]
1674                               },
1675                               {
1676                                  "Name" : "Installer",
1677                                  "Platforms" : [
1678                                     {
1679                                        "Name" : "win32",
1680                                        "Options" : {
1681                                           "ExcludeFromBuild" : true
1682                                        }
1683                                     }
1684                                  ]
1685                               }
1686                            ]
1687                         },
1688                         {
1689                            "FileName" : "XDisplayDriver.ec",
1690                            "Platforms" : [
1691                               {
1692                                  "Name" : "linux",
1693                                  "Options" : {
1694                                     "ExcludeFromBuild" : false
1695                                  }
1696                               },
1697                               {
1698                                  "Name" : "apple",
1699                                  "Options" : {
1700                                     "ExcludeFromBuild" : false
1701                                  }
1702                               }
1703                            ],
1704                            "Configurations" : [
1705                               {
1706                                  "Name" : "Bootstrap",
1707                                  "Platforms" : [
1708                                     {
1709                                        "Name" : "linux",
1710                                        "Options" : {
1711                                           "ExcludeFromBuild" : true
1712                                        }
1713                                     },
1714                                     {
1715                                        "Name" : "apple",
1716                                        "Options" : {
1717                                           "ExcludeFromBuild" : true
1718                                        }
1719                                     }
1720                                  ]
1721                               },
1722                               {
1723                                  "Name" : "Android",
1724                                  "Platforms" : [
1725                                     {
1726                                        "Name" : "linux",
1727                                        "Options" : {
1728                                           "ExcludeFromBuild" : true
1729                                        }
1730                                     }
1731                                  ]
1732                               }
1733                            ]
1734                         },
1735                         {
1736                            "FileName" : "edtaa3func.ec",
1737                            "Options" : {
1738                               "ExcludeFromBuild" : false
1739                            },
1740                            "Configurations" : [
1741                               {
1742                                  "Name" : "Vanilla",
1743                                  "Options" : {
1744                                     "ExcludeFromBuild" : true
1745                                  }
1746                               },
1747                               {
1748                                  "Name" : "Bootstrap",
1749                                  "Options" : {
1750                                     "ExcludeFromBuild" : true
1751                                  }
1752                               }
1753                            ]
1754                         }
1755                      ],
1756                      "Options" : {
1757                         "ExcludeFromBuild" : true
1758                      },
1759                      "Configurations" : [
1760                         {
1761                            "Name" : "PACS",
1762                            "Options" : {
1763                               "ExcludeFromBuild" : true
1764                            }
1765                         }
1766                      ]
1767                   },
1768                   "Bitmap.ec",
1769                   "BitmapResource.ec",
1770                   "Color.ec",
1771                   "Display.ec",
1772                   "DisplaySystem.ec",
1773                   "FontResource.ec",
1774                   "Resource.ec",
1775                   "Surface.ec"
1776                ],
1777                "Configurations" : [
1778                   {
1779                      "Name" : "Bootstrap",
1780                      "Options" : {
1781                         "ExcludeFromBuild" : true
1782                      }
1783                   }
1784                ]
1785             },
1786             {
1787                "Folder" : "gui",
1788                "Files" : [
1789                   {
1790                      "Folder" : "controls",
1791                      "Files" : [
1792                         "Button.ec",
1793                         "CalendarControl.ec",
1794                         "DataBox.ec",
1795                         "DropBox.ec",
1796                         "EditBox.ec",
1797                         "Label.ec",
1798                         "ListBox.ec",
1799                         "Menu.ec",
1800                         "Picture.ec",
1801                         "ProgressBar.ec",
1802                         "ScrollBar.ec",
1803                         "StatusBar.ec",
1804                         {
1805                            "FileName" : "TabControl.ec",
1806                            "Configurations" : [
1807                               {
1808                                  "Name" : "Vanilla",
1809                                  "Options" : {
1810                                     "ExcludeFromBuild" : true
1811                                  }
1812                               }
1813                            ]
1814                         },
1815                         {
1816                            "FileName" : "PaneSplitter.ec",
1817                            "Configurations" : [
1818                               {
1819                                  "Name" : "Vanilla",
1820                                  "Options" : {
1821                                     "ExcludeFromBuild" : true
1822                                  }
1823                               }
1824                            ]
1825                         },
1826                         "Stacker.ec",
1827                         "PathBox.ec",
1828                         "ToolTip.ec",
1829                         "SelectorBar.ec"
1830                      ]
1831                   },
1832                   {
1833                      "Folder" : "dialogs",
1834                      "Files" : [
1835                         "ColorPicker.ec",
1836                         "FileDialog.ec",
1837                         "FindDialog.ec",
1838                         "GoToDialog.ec",
1839                         "MessageBox.ec",
1840                         "ReplaceDialog.ec",
1841                         "WindowList.ec"
1842                      ]
1843                   },
1844                   {
1845                      "Folder" : "drivers",
1846                      "Files" : [
1847                         {
1848                            "Folder" : "cocoa",
1849                            "Files" : [
1850                               "CocoaDispatch.ec",
1851                               "CocoaEcereBridge.h",
1852                               "CocoaEcereBridge.m",
1853                               "CocoaInterface.ec",
1854                               "EcereView.h",
1855                               "EcereView.m"
1856                            ],
1857                            "Platforms" : [
1858                               {
1859                                  "Name" : "apple",
1860                                  "Options" : {
1861                                     "ExcludeFromBuild" : false
1862                                  }
1863                               }
1864                            ],
1865                            "Configurations" : [
1866                               {
1867                                  "Name" : "Bootstrap",
1868                                  "Platforms" : [
1869                                     {
1870                                        "Name" : "apple",
1871                                        "Options" : {
1872                                           "ExcludeFromBuild" : true
1873                                        }
1874                                     }
1875                                  ]
1876                               },
1877                               {
1878                                  "Name" : "Vanilla",
1879                                  "Platforms" : [
1880                                     {
1881                                        "Name" : "apple",
1882                                        "Options" : {
1883                                           "ExcludeFromBuild" : true
1884                                        }
1885                                     }
1886                                  ]
1887                               }
1888                            ]
1889                         },
1890                         {
1891                            "FileName" : "NCursesInterface.ec",
1892                            "Platforms" : [
1893                               {
1894                                  "Name" : "linux",
1895                                  "Options" : {
1896                                     "ExcludeFromBuild" : false
1897                                  }
1898                               },
1899                               {
1900                                  "Name" : "apple",
1901                                  "Options" : {
1902                                     "ExcludeFromBuild" : false
1903                                  }
1904                               }
1905                            ],
1906                            "Configurations" : [
1907                               {
1908                                  "Name" : "Vanilla",
1909                                  "Options" : {
1910                                     "ExcludeFromBuild" : true
1911                                  }
1912                               },
1913                               {
1914                                  "Name" : "Bootstrap",
1915                                  "Platforms" : [
1916                                     {
1917                                        "Name" : "linux",
1918                                        "Options" : {
1919                                           "ExcludeFromBuild" : true
1920                                        }
1921                                     },
1922                                     {
1923                                        "Name" : "apple",
1924                                        "Options" : {
1925                                           "ExcludeFromBuild" : true
1926                                        }
1927                                     }
1928                                  ]
1929                               },
1930                               {
1931                                  "Name" : "Android",
1932                                  "Platforms" : [
1933                                     {
1934                                        "Name" : "linux",
1935                                        "Options" : {
1936                                           "ExcludeFromBuild" : true
1937                                        }
1938                                     }
1939                                  ]
1940                               }
1941                            ]
1942                         },
1943                         {
1944                            "FileName" : "Win32Interface.ec",
1945                            "Platforms" : [
1946                               {
1947                                  "Name" : "win32",
1948                                  "Options" : {
1949                                     "ExcludeFromBuild" : false
1950                                  }
1951                               }
1952                            ],
1953                            "Configurations" : [
1954                               {
1955                                  "Name" : "PACS",
1956                                  "Options" : {
1957                                     "ExcludeFromBuild" : false
1958                                  }
1959                               },
1960                               {
1961                                  "Name" : "Bootstrap",
1962                                  "Platforms" : [
1963                                     {
1964                                        "Name" : "win32",
1965                                        "Options" : {
1966                                           "ExcludeFromBuild" : true
1967                                        }
1968                                     }
1969                                  ]
1970                               }
1971                            ]
1972                         },
1973                         {
1974                            "FileName" : "Win32ConsoleInterface.ec",
1975                            "Platforms" : [
1976                               {
1977                                  "Name" : "win32",
1978                                  "Options" : {
1979                                     "ExcludeFromBuild" : false
1980                                  }
1981                               }
1982                            ],
1983                            "Configurations" : [
1984                               {
1985                                  "Name" : "Vanilla",
1986                                  "Platforms" : [
1987                                     {
1988                                        "Name" : "win32",
1989                                        "Options" : {
1990                                           "ExcludeFromBuild" : true
1991                                        }
1992                                     }
1993                                  ]
1994                               },
1995                               {
1996                                  "Name" : "WSMS",
1997                                  "Platforms" : [
1998                                     {
1999                                        "Name" : "win32",
2000                                        "Options" : {
2001                                           "ExcludeFromBuild" : true
2002                                        }
2003                                     }
2004                                  ]
2005                               },
2006                               {
2007                                  "Name" : "Bootstrap",
2008                                  "Platforms" : [
2009                                     {
2010                                        "Name" : "win32",
2011                                        "Options" : {
2012                                           "ExcludeFromBuild" : true
2013                                        }
2014                                     }
2015                                  ]
2016                               },
2017                               {
2018                                  "Name" : "Installer",
2019                                  "Platforms" : [
2020                                     {
2021                                        "Name" : "win32",
2022                                        "Options" : {
2023                                           "ExcludeFromBuild" : true
2024                                        }
2025                                     }
2026                                  ]
2027                               }
2028                            ]
2029                         },
2030                         {
2031                            "FileName" : "XInterface.ec",
2032                            "Platforms" : [
2033                               {
2034                                  "Name" : "linux",
2035                                  "Options" : {
2036                                     "ExcludeFromBuild" : false
2037                                  }
2038                               },
2039                               {
2040                                  "Name" : "apple",
2041                                  "Options" : {
2042                                     "ExcludeFromBuild" : false
2043                                  }
2044                               }
2045                            ],
2046                            "Configurations" : [
2047                               {
2048                                  "Name" : "Bootstrap",
2049                                  "Platforms" : [
2050                                     {
2051                                        "Name" : "linux",
2052                                        "Options" : {
2053                                           "ExcludeFromBuild" : true
2054                                        }
2055                                     },
2056                                     {
2057                                        "Name" : "apple",
2058                                        "Options" : {
2059                                           "ExcludeFromBuild" : true
2060                                        }
2061                                     }
2062                                  ]
2063                               },
2064                               {
2065                                  "Name" : "Android",
2066                                  "Platforms" : [
2067                                     {
2068                                        "Name" : "linux",
2069                                        "Options" : {
2070                                           "ExcludeFromBuild" : true
2071                                        }
2072                                     }
2073                                  ]
2074                               }
2075                            ]
2076                         },
2077                         {
2078                            "FileName" : "AndroidInterface.ec",
2079                            "Configurations" : [
2080                               {
2081                                  "Name" : "Android",
2082                                  "Options" : {
2083                                     "ExcludeFromBuild" : false
2084                                  }
2085                               }
2086                            ]
2087                         }
2088                      ],
2089                      "Options" : {
2090                         "ExcludeFromBuild" : true
2091                      },
2092                      "Configurations" : [
2093                         {
2094                            "Name" : "PACS",
2095                            "Options" : {
2096                               "ExcludeFromBuild" : true
2097                            }
2098                         }
2099                      ]
2100                   },
2101                   {
2102                      "Folder" : "skins",
2103                      "Files" : [
2104                         {
2105                            "FileName" : "TVisionSkin.ec",
2106                            "Configurations" : [
2107                               {
2108                                  "Name" : "PACS",
2109                                  "Options" : {
2110                                     "ExcludeFromBuild" : true
2111                                  }
2112                               },
2113                               {
2114                                  "Name" : "Vanilla",
2115                                  "Options" : {
2116                                     "ExcludeFromBuild" : true
2117                                  }
2118                               },
2119                               {
2120                                  "Name" : "Installer",
2121                                  "Platforms" : [
2122                                     {
2123                                        "Name" : "win32",
2124                                        "Options" : {
2125                                           "ExcludeFromBuild" : true
2126                                        }
2127                                     }
2128                                  ]
2129                               }
2130                            ]
2131                         },
2132                         "WindowsSkin.ec"
2133                      ]
2134                   },
2135                   "Anchor.ec",
2136                   "ClipBoard.ec",
2137                   "Cursor.ec",
2138                   {
2139                      "FileName" : "Desktop3D.ec",
2140                      "Configurations" : [
2141                         {
2142                            "Name" : "PACS",
2143                            "Options" : {
2144                               "ExcludeFromBuild" : true
2145                            }
2146                         },
2147                         {
2148                            "Name" : "Vanilla",
2149                            "Options" : {
2150                               "ExcludeFromBuild" : true
2151                            }
2152                         },
2153                         {
2154                            "Name" : "WSMS",
2155                            "Options" : {
2156                               "ExcludeFromBuild" : true
2157                            }
2158                         },
2159                         {
2160                            "Name" : "Installer",
2161                            "Platforms" : [
2162                               {
2163                                  "Name" : "win32",
2164                                  "Options" : {
2165                                     "ExcludeFromBuild" : true
2166                                  }
2167                               }
2168                            ]
2169                         }
2170                      ]
2171                   },
2172                   {
2173                      "FileName" : "FormDesigner.ec",
2174                      "Configurations" : [
2175                         {
2176                            "Name" : "PACS",
2177                            "Options" : {
2178                               "ExcludeFromBuild" : true
2179                            }
2180                         }
2181                      ]
2182                   },
2183                   "GuiApplication.ec",
2184                   "Interface.ec",
2185                   "Key.ec",
2186                   "Skin.ec",
2187                   "Timer.ec",
2188                   "typeEdit.ec",
2189                   "Window.ec"
2190                ],
2191                "Configurations" : [
2192                   {
2193                      "Name" : "Bootstrap",
2194                      "Options" : {
2195                         "ExcludeFromBuild" : true
2196                      }
2197                   }
2198                ]
2199             },
2200             {
2201                "Folder" : "net",
2202                "Files" : [
2203                   {
2204                      "FileName" : "dcom.ec",
2205                      "Configurations" : [
2206                         {
2207                            "Name" : "PACS",
2208                            "Options" : {
2209                               "ExcludeFromBuild" : true
2210                            }
2211                         }
2212                      ]
2213                   },
2214                   "HTTPFile.ec",
2215                   "network.ec",
2216                   {
2217                      "FileName" : "NetworkClientFile.ec",
2218                      "Configurations" : [
2219                         {
2220                            "Name" : "PACS",
2221                            "Options" : {
2222                               "ExcludeFromBuild" : true
2223                            }
2224                         }
2225                      ]
2226                   },
2227                   "Service.ec",
2228                   "Socket.ec",
2229                   {
2230                      "FileName" : "SSLSocket.ec",
2231                      "Configurations" : [
2232                         {
2233                            "Name" : "WSMS",
2234                            "Options" : {
2235                               "ExcludeFromBuild" : true
2236                            }
2237                         },
2238                         {
2239                            "Name" : "PACS",
2240                            "Options" : {
2241                               "ExcludeFromBuild" : true
2242                            }
2243                         },
2244                         {
2245                            "Name" : "Android",
2246                            "Options" : {
2247                               "ExcludeFromBuild" : true
2248                            }
2249                         },
2250                         {
2251                            "Name" : "Installer",
2252                            "Options" : {
2253                               "ExcludeFromBuild" : true
2254                            }
2255                         }
2256                      ]
2257                   }
2258                ],
2259                "Configurations" : [
2260                   {
2261                      "Name" : "Bootstrap",
2262                      "Options" : {
2263                         "ExcludeFromBuild" : true
2264                      }
2265                   },
2266                   {
2267                      "Name" : "Vanilla",
2268                      "Options" : {
2269                         "ExcludeFromBuild" : true
2270                      }
2271                   },
2272                   {
2273                      "Name" : "Installer",
2274                      "Platforms" : [
2275                         {
2276                            "Name" : "win32",
2277                            "Options" : {
2278                               "ExcludeFromBuild" : true
2279                            }
2280                         }
2281                      ]
2282                   }
2283                ]
2284             },
2285             {
2286                "Folder" : "com",
2287                "Files" : [
2288                   {
2289                      "Folder" : "containers",
2290                      "Files" : [
2291                         "Array.ec",
2292                         "AVLTree.ec",
2293                         "BuiltInContainer.ec",
2294                         "Container.ec",
2295                         "CustomAVLTree.ec",
2296                         "LinkList.ec",
2297                         "List.ec",
2298                         "Map.ec"
2299                      ]
2300                   },
2301                   {
2302                      "FileName" : "BinaryTree.ec",
2303                      "Configurations" : [
2304                         {
2305                            "Name" : "MemoryGuard",
2306                            "Options" : {
2307                               "MemoryGuard" : false
2308                            }
2309                         },
2310                         {
2311                            "Name" : "MemoryGuardRelease",
2312                            "Options" : {
2313                               "MemoryGuard" : false
2314                            }
2315                         }
2316                      ]
2317                   },
2318                   {
2319                      "FileName" : "BTNode.ec",
2320                      "Configurations" : [
2321                         {
2322                            "Name" : "MemoryGuard",
2323                            "Options" : {
2324                               "MemoryGuard" : false
2325                            }
2326                         },
2327                         {
2328                            "Name" : "MemoryGuardRelease",
2329                            "Options" : {
2330                               "MemoryGuard" : false
2331                            }
2332                         }
2333                      ]
2334                   },
2335                   "dataTypes.ec",
2336                   {
2337                      "FileName" : "instance.ec",
2338                      "Configurations" : [
2339                         {
2340                            "Name" : "MemoryGuard",
2341                            "Options" : {
2342                               "MemoryGuard" : false
2343                            }
2344                         },
2345                         {
2346                            "Name" : "MemoryGuardRelease",
2347                            "Options" : {
2348                               "MemoryGuard" : false
2349                            }
2350                         }
2351                      ]
2352                   },
2353                   "String.ec",
2354                   "OldList.ec",
2355                   {
2356                      "FileName" : "instance.c",
2357                      "Configurations" : [
2358                         {
2359                            "Name" : "Bootstrap",
2360                            "Options" : {
2361                               "ExcludeFromBuild" : true
2362                            }
2363                         }
2364                      ]
2365                   }
2366                ],
2367                "Options" : {
2368                   "PreprocessorDefinitions" : [
2369                      "ECERE_COM_MODULE"
2370                   ]
2371                }
2372             }
2373          ]
2374       }
2375    ],
2376    "ResourcesPath" : "res",
2377    "Resources" : [
2378       {
2379          "Folder" : "actions",
2380          "Files" : [
2381             "editFind.png",
2382             "folderNew.png",
2383             "goDown.png",
2384             "goHome.png",
2385             "goNext.png",
2386             "goPrevious.png",
2387             "goUp.png",
2388             "listAdd.png",
2389             "listRemove.png",
2390             "viewRefresh.png",
2391             "windowNew.png",
2392             "clean.png",
2393             "docSave.png",
2394             "docNew.png"
2395          ],
2396          "Configurations" : [
2397             {
2398                "Name" : "Bootstrap",
2399                "Options" : {
2400                   "ExcludeFromBuild" : true
2401                }
2402             }
2403          ]
2404       },
2405       {
2406          "Folder" : "constructs",
2407          "Files" : [
2408             "class.png",
2409             "data.png",
2410             "dataPrivate.png",
2411             "dataType.png",
2412             "enum.png",
2413             "enumValue.png",
2414             "event.png",
2415             "library.png",
2416             "method.png",
2417             "methodPrivate.png",
2418             "namespace.png",
2419             "property.png",
2420             "propertyPrivate.png"
2421          ],
2422          "Configurations" : [
2423             {
2424                "Name" : "Bootstrap",
2425                "Options" : {
2426                   "ExcludeFromBuild" : true
2427                }
2428             }
2429          ]
2430       },
2431       {
2432          "Folder" : "controls",
2433          "Files" : [
2434             "button.png",
2435             "calendar.png",
2436             "checkBox.png",
2437             "dataBox.png",
2438             "dropBox.png",
2439             "editBox.png",
2440             "groupBox.png",
2441             "label.png",
2442             "listBox.png",
2443             "menu.png",
2444             "optionBox.png",
2445             "progressBar.png",
2446             "scrollBarHorizontal.png",
2447             "scrollBarVertical.png",
2448             "statusBar.png"
2449          ],
2450          "Configurations" : [
2451             {
2452                "Name" : "Bootstrap",
2453                "Options" : {
2454                   "ExcludeFromBuild" : true
2455                }
2456             }
2457          ]
2458       },
2459       {
2460          "Folder" : "cursors",
2461          "Files" : [
2462             "arrow.png",
2463             "cross.png",
2464             "iBeam.png",
2465             "move.png",
2466             "sizeEastWest.png",
2467             "sizeNortEastSouthWest.png",
2468             "sizeNorthSouth.png",
2469             "sizeNortWestSouthEast.png"
2470          ],
2471          "Configurations" : [
2472             {
2473                "Name" : "Bootstrap",
2474                "Options" : {
2475                   "ExcludeFromBuild" : true
2476                }
2477             }
2478          ]
2479       },
2480       {
2481          "Folder" : "devices",
2482          "Files" : [
2483             "computer.png",
2484             "driveHardDisk.png",
2485             "driveRemovableMedia.png",
2486             "mediaFloppy.png",
2487             "mediaOptical.png"
2488          ],
2489          "Configurations" : [
2490             {
2491                "Name" : "Bootstrap",
2492                "Options" : {
2493                   "ExcludeFromBuild" : true
2494                }
2495             }
2496          ]
2497       },
2498       {
2499          "Folder" : "elements",
2500          "Files" : [
2501             "areaClose.png",
2502             "areaMaximize.png",
2503             "areaMinimize.png",
2504             "areaRestore.png",
2505             "arrowDown.png",
2506             "arrowLeft.png",
2507             "arrowRight.png",
2508             "arrowUp.png",
2509             "checkBoxChecked.png",
2510             "checkBoxDisabled.png",
2511             "checkBoxDisabledChecked.png",
2512             "checkBox.png",
2513             "optionBoxDisabled.png",
2514             "optionBoxDisabledSelected.png",
2515             "optionBoxDown.png",
2516             "optionBoxSelectedDown.png",
2517             "optionBoxSelectedUp.png",
2518             "optionBoxUp.png",
2519             "orderAscending.png",
2520             "orderCategorized.png",
2521             "orderDescending.png"
2522          ],
2523          "Configurations" : [
2524             {
2525                "Name" : "Bootstrap",
2526                "Options" : {
2527                   "ExcludeFromBuild" : true
2528                }
2529             }
2530          ]
2531       },
2532       {
2533          "Folder" : "emblems",
2534          "Files" : [
2535             "unreadable.png"
2536          ],
2537          "Configurations" : [
2538             {
2539                "Name" : "Bootstrap",
2540                "Options" : {
2541                   "ExcludeFromBuild" : true
2542                }
2543             }
2544          ]
2545       },
2546       {
2547          "Folder" : "mimeTypes",
2548          "Files" : [
2549             "file.png",
2550             "image.png",
2551             "package.png",
2552             "packageOpticalDisc.png",
2553             "packageSoftware.png",
2554             "text.png",
2555             "textCHeader.png",
2556             "textCSource.png",
2557             "textC++Header.png",
2558             "textC++Source.png",
2559             "textEcereHeader.png",
2560             "textEcereProject.png",
2561             "textEcereSource.png",
2562             "textEcereWorkspace.png",
2563             "textHyperTextMarkup.png",
2564             "brokenFile.png"
2565          ],
2566          "Configurations" : [
2567             {
2568                "Name" : "Bootstrap",
2569                "Options" : {
2570                   "ExcludeFromBuild" : true
2571                }
2572             }
2573          ]
2574       },
2575       {
2576          "Folder" : "places",
2577          "Files" : [
2578             "driveRemote.png",
2579             "folder.png",
2580             "folderRemote.png",
2581             "networkServer.png",
2582             "networkWorkgroup.png",
2583             "brokenFolder.png"
2584          ],
2585          "Configurations" : [
2586             {
2587                "Name" : "Bootstrap",
2588                "Options" : {
2589                   "ExcludeFromBuild" : true
2590                }
2591             }
2592          ]
2593       },
2594       {
2595          "Folder" : "status",
2596          "Files" : [
2597             "audioVolumeHigh.png",
2598             "folderOpen.png"
2599          ],
2600          "Configurations" : [
2601             {
2602                "Name" : "Bootstrap",
2603                "Options" : {
2604                   "ExcludeFromBuild" : true
2605                }
2606             }
2607          ]
2608       },
2609       {
2610          "Folder" : "unicode",
2611          "Files" : [
2612             "derivedGeneralCategoryStripped.txt"
2613          ],
2614          "Configurations" : [
2615             {
2616                "Name" : "Bootstrap",
2617                "Options" : {
2618                   "ExcludeFromBuild" : true
2619                }
2620             }
2621          ]
2622       },
2623       {
2624          "Folder" : "locale",
2625          "Files" : [
2626             "locale/es.mo",
2627             "locale/hu.mo",
2628             "locale/mr.mo",
2629             "locale/nl.mo",
2630             "locale/pt_BR.mo",
2631             "locale/ru.mo",
2632             "locale/zh_CN.mo"
2633          ],
2634          "Configurations" : [
2635             {
2636                "Name" : "Bootstrap",
2637                "Options" : {
2638                   "ExcludeFromBuild" : true
2639                }
2640             }
2641          ]
2642       },
2643       {
2644          "Folder" : "shaders",
2645          "Files" : [
2646             "src/gfx/drivers/gl3/fixed.frag",
2647             "src/gfx/drivers/gl3/fixed.vertex"
2648          ]
2649       },
2650       {
2651          "FileName" : "C:/Windows/Fonts/tahoma.ttf",
2652          "Options" : {
2653             "ExcludeFromBuild" : true
2654          },
2655          "Configurations" : [
2656             {
2657                "Name" : "Android",
2658                "Options" : {
2659                   "ExcludeFromBuild" : false
2660                }
2661             }
2662          ]
2663       },
2664       {
2665          "FileName" : "C:/Windows/Fonts/tahomabd.ttf",
2666          "Options" : {
2667             "ExcludeFromBuild" : true
2668          },
2669          "Configurations" : [
2670             {
2671                "Name" : "Android",
2672                "Options" : {
2673                   "ExcludeFromBuild" : false
2674                }
2675             }
2676          ]
2677       },
2678       {
2679          "FileName" : "C:/Windows/Fonts/arial.ttf",
2680          "Options" : {
2681             "ExcludeFromBuild" : true
2682          },
2683          "Configurations" : [
2684             {
2685                "Name" : "Android",
2686                "Options" : {
2687                   "ExcludeFromBuild" : false
2688                }
2689             }
2690          ]
2691       },
2692       {
2693          "FileName" : "C:/Windows/Fonts/arialbd.ttf",
2694          "Options" : {
2695             "ExcludeFromBuild" : true
2696          },
2697          "Configurations" : [
2698             {
2699                "Name" : "Android",
2700                "Options" : {
2701                   "ExcludeFromBuild" : false
2702                }
2703             }
2704          ]
2705       }
2706    ]
2707 }