Mercurial > hg > orthanc-stone
view Applications/Resources/RunCppCheck.sh @ 1739:9ac2a65d4172
upgrade to year 2021
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 06 Jan 2021 17:50:00 +0100 |
parents | 51f10108c934 |
children | 385c268e8b56 |
line wrap: on
line source
#!/bin/bash # Stone of Orthanc # Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics # Department, University Hospital of Liege, Belgium # Copyright (C) 2017-2021 Osimis S.A., Belgium # # This program is free software: you can redistribute it and/or # modify it under the terms of the GNU Affero General Public License # as published by the Free Software Foundation, either version 3 of # the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Affero General Public License for more details. # # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. set -ex CPPCHECK=cppcheck if [ $# -ge 1 ]; then CPPCHECK=$1 fi cat <<EOF > /tmp/cppcheck-suppressions.txt stlFindInsert:../../Applications/Samples/WebAssembly/SingleFrameViewer/SingleFrameViewerApplication.h stlFindInsert:../../Applications/StoneWebViewer/WebAssembly/StoneWebViewer.cpp:374 stlFindInsert:../../Applications/StoneWebViewer/WebAssembly/StoneWebViewer.cpp:969 unpreciseMathCall:../../OrthancStone/Sources/Scene2D/Internals/CairoFloatTextureRenderer.cpp unpreciseMathCall:../../OrthancStone/Sources/Scene2D/LookupTableTextureSceneLayer.cpp unreadVariable:../../OrthancStone/Sources/Viewport/SdlViewport.cpp:143 unreadVariable:../../OrthancStone/Sources/Viewport/SdlViewport.cpp:197 unusedFunction EOF ${CPPCHECK} --enable=all --quiet --std=c++11 \ --suppressions-list=/tmp/cppcheck-suppressions.txt \ -DHAS_ORTHANC_EXCEPTION=1 \ -DORTHANC_BUILDING_FRAMEWORK_LIBRARY=1 \ -DORTHANC_ENABLE_BASE64=1 \ -DORTHANC_ENABLE_CIVETWEB=0 \ -DORTHANC_ENABLE_CURL=1 \ -DORTHANC_ENABLE_DCMTK=1 \ -DORTHANC_ENABLE_DCMTK_JPEG=1 \ -DORTHANC_ENABLE_DCMTK_JPEG_LOSSLESS=1 \ -DORTHANC_ENABLE_GLEW=1 \ -DORTHANC_ENABLE_JPEG=1 \ -DORTHANC_ENABLE_LOCALE=1 \ -DORTHANC_ENABLE_LOGGING=1 \ -DORTHANC_ENABLE_LOGGING_STDIO=1 \ -DORTHANC_ENABLE_MD5=1 \ -DORTHANC_ENABLE_MONGOOSE=0 \ -DORTHANC_ENABLE_OPENGL=1 \ -DORTHANC_ENABLE_PKCS11=0 \ -DORTHANC_ENABLE_PNG=1 \ -DORTHANC_ENABLE_PUGIXML=1 \ -DORTHANC_ENABLE_SDL=1 \ -DORTHANC_ENABLE_SSL=1 \ -DORTHANC_ENABLE_THREADS=1 \ -DORTHANC_ENABLE_WASM=1 \ -DORTHANC_ENABLE_ZLIB=1 \ -DORTHANC_SANDBOXED=0 \ -D__GNUC__ \ -D__cplusplus=201103 \ -D__linux__ \ -DEM_ASM \ -UNDEBUG \ -I/home/jodogne/Subversion/orthanc/OrthancFramework/Sources \ -I/home/jodogne/Subversion/orthanc/OrthancServer/Plugins/Include/ \ \ ../../Applications/Samples \ ../../Applications/StoneWebViewer \ ../../OrthancStone/Sources \ \ -i ../../Applications/Samples/RtViewerPlugin/i \ -i ../../Applications/Samples/Sdl/i \ -i ../../Applications/Samples/WebAssembly/i \ -i ../../Applications/StoneWebViewer/Plugin/i \ -i ../../Applications/StoneWebViewer/WebAssembly/StoneModule/i \ -i ../../Applications/StoneWebViewer/WebAssembly/i \ -i ../../Applications/StoneWebViewer/WebAssembly/debug/ \ \ 2>&1