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
|
<?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">
<include>"parameters.h"</include>
<kcfgfile />
<group name="Cppcheck">
<entry name="executablePath" key="executablePath" type="Path">
<default code="true">QStandardPaths::findExecutable(QStringLiteral("cppcheck"))</default>
</entry>
<entry name="hideOutputView" key="hideOutputView" type="Bool">
<default code="true">defaults::hideOutputView</default>
</entry>
<entry name="showXmlOutput" key="showXmlOutput" type="Bool">
<default code="true">defaults::showXmlOutput</default>
</entry>
</group>
</kcfg>
|