Warning, /frameworks/kconfig/README.md is written in an unsupported language. File is not indexed.

0001 # KConfig
0002 
0003 Persistent platform-independent application settings.
0004 
0005 ## Introduction
0006 
0007 KConfig provides an advanced configuration system. It is made of two parts:
0008 KConfigCore and KConfigGui.
0009 
0010 KConfigCore provides access to the configuration files themselves. It features:
0011 
0012 - Code generation: describe your configuration in an XML file, and use
0013   kconfig_compiler to generate classes that read and write configuration
0014   entries.
0015 - Cascading configuration files (global settings overridden by local settings).
0016 - Optional shell expansion support (see [docs/options.md](@ref options)).
0017 - The ability to lock down configuration options (see
0018   [docs/options.md](@ref options)).
0019 
0020 KConfigGui provides a way to hook widgets to the configuration so that they are
0021 automatically initialized from the configuration and automatically propagate
0022 their changes to their respective configuration files.
0023