This change facilitates loading Coati into Coati: * removed error logs for TokenComponent setting * fixed edge checks regarding template stuff * separated CommonSettings to be inherited by Project- and ApplicationSettings for common settings * pluralized SourcePaths setting in xml to allow for loading multiple directories and single files * added CompilerFlags section to settings * passing Compiler arguments to Parser via struct Parser::Arguments * setting -isystem for all header search paths to avoid distinction between "" and <> headers * parsing all headers from the SourcePaths, even the ones that are not included * fixed parsing time measurement and display * added utility.h file for general utility functionality
28 lines
834 B
XML
28 lines
834 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!-- INTEGER: int e.g 123 -->
|
|
<!-- DECIMAL: float e.g 123.456 -->
|
|
<!-- STRING: string e.g hello -->
|
|
<!-- COLOR: int int int int - rgba e.g. 125 125 125 255 -->
|
|
|
|
<config>
|
|
<source>
|
|
<SourcePaths>
|
|
<SourcePath><!-- STRING: path to source file or directory, also used as header search path --></SourcePath>
|
|
</SourcePaths>
|
|
|
|
<CompilerFlags>
|
|
<CompilerFlag><!-- STRING: compiler flag, including the dash e.g. -v --></CompilerFlag>
|
|
</CompilerFlags>
|
|
|
|
<HeaderSearchPaths>
|
|
<HeaderSearchPath><!-- STRING: header search path for each path a HeaderSearchPath element --></HeaderSearchPath>
|
|
</HeaderSearchPaths>
|
|
|
|
<!-- MAC ONLY -->
|
|
<FrameworkSearchPaths>
|
|
<FrameworkSearchPath><!-- STRING: framework search path --></FrameworkSearchPath>
|
|
</FrameworkSearchPaths>
|
|
</source>
|
|
</config>
|