GUI: Update project file documentation.

This commit is contained in:
Kimmo Varis 2011-08-23 19:59:18 +03:00
parent 4998c913da
commit a3d6b697ad
1 changed files with 4 additions and 4 deletions

View File

@ -23,9 +23,9 @@ program. The format is:
<define name="_MSC_VER=1400" /> <define name="_MSC_VER=1400" />
<define name="_WIN32" /> <define name="_WIN32" />
</defines> </defines>
<ignore> <exclude>
<path name="gui/temp/" /> <path name="gui/temp/" />
</ignore> </exclude>
</project> </project>
where: where:
@ -41,8 +41,8 @@ where:
recommended that relative paths are used for paths inside the project root recommended that relative paths are used for paths inside the project root
folder for better portability. folder for better portability.
- defines element contains a list of C/C++ preprocessor defines. - defines element contains a list of C/C++ preprocessor defines.
- ignore element contains list of paths to ignore. The path can be a - exclude element contains list of paths to exclude from the check. The path
directory (must end with path separator) or file. can be a directory (must end with path separator) or a file.
For real life examples see the cppcheck.cppcheck-file in the Cppcheck sources For real life examples see the cppcheck.cppcheck-file in the Cppcheck sources
root-directory or gui.cppcheck file in gui-directory. root-directory or gui.cppcheck file in gui-directory.