* removed blurry coati background * added language selection to project type window * search for headers in project paths option as part of simple setup * show popup containing list of all analyzed symbols * show build file path in summary and allow refreshing * only force refresh after editing project and something changed
50 lines
1.8 KiB
XML
50 lines
1.8 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>
|
|
<info>
|
|
<description><!-- STRING: optional description shown in overview. Symbols can be linked with syntax [main] --></description>
|
|
</info>
|
|
|
|
<language_settings>
|
|
<language><!-- STRING: name of the language, e.g. c, c++, spanish, greek, greek++,... --></language>
|
|
<standard><!-- STRING: language version, e.g. c++ '11' --></standard>
|
|
</language_settings>
|
|
|
|
<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>
|
|
|
|
<use_source_paths_for_header_search><!-- BOOL: If enabled all subfolder of the source paths will be used for header search --></use_source_paths_for_header_search>
|
|
|
|
<build_file_path>
|
|
<vs_solution_path><!-- STRING: path to Visual Studio solution *.sln --></vs_solution_path>
|
|
<compilation_db_path><!-- STRING: path to Compilation Database --></compilation_db_path>
|
|
</build_file_path>
|
|
</source>
|
|
</config>
|