Doxygen ignore _rc.py files

This commit is contained in:
Ian Rees 2015-03-21 21:53:14 +13:00 committed by wmayer
parent 089174c297
commit 2de5c0f59c
3 changed files with 7 additions and 3 deletions

View File

@ -638,7 +638,8 @@ EXCLUDE_PATTERNS =*.moc.* \
*/swigpyrun*.* \
*/lex.*.c \
*/.svn/* \
*/CMakeFiles/*
*/CMakeFiles/* \
*_rc.py
# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
# (namespaces, classes, functions, etc.) that should be excluded from the

View File

@ -615,7 +615,8 @@ EXCLUDE_SYMLINKS = NO
EXCLUDE_PATTERNS = *.moc.* \
moc_* \
*.ui.h
*.ui.h \
*_rc.py
# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
# (namespaces, classes, functions, etc.) that should be excluded from the

View File

@ -104,6 +104,8 @@ if(DOXYGEN_FOUND)
)
endif( FREECAD_MAINTAINERS_BUILD )
else( DOXYGEN_FOUND )
ADD_CUSTOM_TARGET(DevDoc
echo "Doxygen not found. Install it and rerun CMake")
endif( DOXYGEN_FOUND )