* replaced xml tags that have been written in PascalCase with the underscore_notation throughout all of the settings files.
35 lines
1.1 KiB
XML
35 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!-- BOOL: 0, 1 -->
|
|
<!-- 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>
|
|
<source_paths>
|
|
<source_path><!-- STRING: path to source file or directory, also used as header search path --></source_path>
|
|
</source_paths>
|
|
|
|
<compiler_flags>
|
|
<compiler_flag><!-- STRING: compiler flag, including the dash e.g. -v --></compiler_flag>
|
|
</compiler_flags>
|
|
|
|
<header_search_paths>
|
|
<header_search_path><!-- STRING: header search path for each path a header_search_path element --></header_search_path>
|
|
</header_search_paths>
|
|
|
|
<!-- MAC ONLY -->
|
|
<framework_search_paths>
|
|
<framework_search_path><!-- STRING: framework search path --></framework_search_path>
|
|
</framework_search_paths>
|
|
|
|
<extensions>
|
|
<header_extensions><!-- STRING: extension for header/include e.g. .h --></header_extensions>
|
|
<source_extensions><!-- STRING: extension for source e.g. .cpp --></source_extensions>
|
|
</extensions>
|
|
|
|
</source>
|
|
</config>
|