If static analysis is enabled disable error checking when compiling the

Qt code. This should hopefully work around a builder issue.

svn path=/trunk/; revision=52661
This commit is contained in:
Gerald Combs 2013-10-17 17:50:00 +00:00
parent cbe8af0a8b
commit e7202d159a
1 changed files with 7 additions and 0 deletions

View File

@ -776,11 +776,18 @@ gtk:: help config.h svnversion.h doxygen
$(MAKE) /$(MAKEFLAGS) /f Makefile.nmake libgtkui.lib
cd ../..
# The Visual C++ static analyzer currently fails with error C2171
# when compiling summary_dialog.cpp. If/when this ever gets fixed
# we can remove the ENABLE_CODE_ANALYSIS check.
qt:: help config.h svnversion.h doxygen
!IFDEF QT5_BASE_DIR
cd ui/qt
$(QT5_BASE_DIR)\bin\qmake CONFIG+=release QtShark.pro
!IFDEF ENABLE_CODE_ANALYSIS
-nmake
!ELSE
nmake
!ENDIF
cd ../..
!ENDIF