-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcppcheck.xml
More file actions
50 lines (45 loc) · 1.29 KB
/
cppcheck.xml
File metadata and controls
50 lines (45 loc) · 1.29 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?xml version="1.0" encoding="UTF-8"?>
<project version="1">
<root name="."/>
<builddir>build</builddir>
<analyze-all-vs-configs>true</analyze-all-vs-configs>
<check-headers>true</check-headers>
<check-unused-templates>true</check-unused-templates>
<max-ctu-depth>2</max-ctu-depth>
<max-template-recursion>100</max-template-recursion>
<!-- Include paths -->
<includedir>
<dir name="src/"/>
<dir name="tests/"/>
</includedir>
<!-- Paths to analyze -->
<paths>
<dir name="src/"/>
<dir name="tests/"/>
</paths>
<!-- Exclude patterns -->
<exclude>
<path name="build/"/>
<path name="src/moc_*.cpp"/>
<path name="src/ui_*.h"/>
<path name="src/qrc_*.cpp"/>
<path name="*_qmlcache.cpp"/>
</exclude>
<!-- Libraries -->
<libraries>
<library>qt</library>
<library>std</library>
<library>posix</library>
</libraries>
<!-- Suppressions -->
<suppressions>
<suppression>
<id>missingIncludeSystem</id>
<fileName>*</fileName>
</suppression>
<suppression>
<id>unusedFunction</id>
<fileName>tests/*</fileName>
</suppression>
</suppressions>
</project>