blob: aa4ef948e52d8b326e13bd8d30f5b89cf2b39dc1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
<?xml version="1.0" encoding="UTF-8" ?>
<kcfg xmlns="http://www.kde.org/standards/kcfg/1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.kde.org/standards/kcfg/1.0
http://www.kde.org/standards/kcfg/1.0/kcfg.xsd" >
<kcfgfile name="kconfig_compiler_kf5_test_rc">
<parameter name="GeneralGroup" />
<parameter name="SubGroup"/>
<parameter name="AnotherSubGroup"/>
</kcfgfile>
<group name="$(SubGroup)" parentGroupName="$(GeneralGroup)">
<entry name="Foo" type="Bool">
<default>true</default>
</entry>
</group>
<group name="other" parentGroupName="$(GeneralGroup)">
<entry name="Bar" type="Int">
<default>42</default>
</entry>
</group>
<group name="$(AnotherSubGroup)" parentGroupName="ParentGroup">
<entry name="Baz" type="Bool">
<default>true</default>
</entry>
</group>
<group name="SimpleGroup" parentGroupName="SimpleParentGroup">
<entry name="Foobar" type="Bool">
<default>true</default>
</entry>
</group>
</kcfg>
|