Mercurial > hg > orthanc-stone
annotate 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 |
rev | line source |
---|---|
1571 | 1 #!/bin/bash |
2 | |
1589
8c5f9864545f
adding missing headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1583
diff
changeset
|
3 # Stone of Orthanc |
8c5f9864545f
adding missing headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1583
diff
changeset
|
4 # Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics |
8c5f9864545f
adding missing headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1583
diff
changeset
|
5 # Department, University Hospital of Liege, Belgium |
1739
9ac2a65d4172
upgrade to year 2021
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1728
diff
changeset
|
6 # Copyright (C) 2017-2021 Osimis S.A., Belgium |
1589
8c5f9864545f
adding missing headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1583
diff
changeset
|
7 # |
8c5f9864545f
adding missing headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1583
diff
changeset
|
8 # This program is free software: you can redistribute it and/or |
8c5f9864545f
adding missing headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1583
diff
changeset
|
9 # modify it under the terms of the GNU Affero General Public License |
8c5f9864545f
adding missing headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1583
diff
changeset
|
10 # as published by the Free Software Foundation, either version 3 of |
8c5f9864545f
adding missing headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1583
diff
changeset
|
11 # the License, or (at your option) any later version. |
8c5f9864545f
adding missing headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1583
diff
changeset
|
12 # |
8c5f9864545f
adding missing headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1583
diff
changeset
|
13 # This program is distributed in the hope that it will be useful, but |
8c5f9864545f
adding missing headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1583
diff
changeset
|
14 # WITHOUT ANY WARRANTY; without even the implied warranty of |
8c5f9864545f
adding missing headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1583
diff
changeset
|
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
8c5f9864545f
adding missing headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1583
diff
changeset
|
16 # Affero General Public License for more details. |
8c5f9864545f
adding missing headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1583
diff
changeset
|
17 # |
8c5f9864545f
adding missing headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1583
diff
changeset
|
18 # You should have received a copy of the GNU Affero General Public License |
8c5f9864545f
adding missing headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1583
diff
changeset
|
19 # along with this program. If not, see <http://www.gnu.org/licenses/>. |
8c5f9864545f
adding missing headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1583
diff
changeset
|
20 |
8c5f9864545f
adding missing headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1583
diff
changeset
|
21 |
1571 | 22 set -ex |
23 | |
24 CPPCHECK=cppcheck | |
25 | |
26 if [ $# -ge 1 ]; then | |
27 CPPCHECK=$1 | |
28 fi | |
29 | |
30 cat <<EOF > /tmp/cppcheck-suppressions.txt | |
1573 | 31 stlFindInsert:../../Applications/Samples/WebAssembly/SingleFrameViewer/SingleFrameViewerApplication.h |
1728 | 32 stlFindInsert:../../Applications/StoneWebViewer/WebAssembly/StoneWebViewer.cpp:374 |
33 stlFindInsert:../../Applications/StoneWebViewer/WebAssembly/StoneWebViewer.cpp:969 | |
1571 | 34 unpreciseMathCall:../../OrthancStone/Sources/Scene2D/Internals/CairoFloatTextureRenderer.cpp |
35 unpreciseMathCall:../../OrthancStone/Sources/Scene2D/LookupTableTextureSceneLayer.cpp | |
1582 | 36 unreadVariable:../../OrthancStone/Sources/Viewport/SdlViewport.cpp:143 |
37 unreadVariable:../../OrthancStone/Sources/Viewport/SdlViewport.cpp:197 | |
1571 | 38 unusedFunction |
39 EOF | |
40 | |
41 ${CPPCHECK} --enable=all --quiet --std=c++11 \ | |
42 --suppressions-list=/tmp/cppcheck-suppressions.txt \ | |
1573 | 43 -DHAS_ORTHANC_EXCEPTION=1 \ |
1571 | 44 -DORTHANC_BUILDING_FRAMEWORK_LIBRARY=1 \ |
45 -DORTHANC_ENABLE_BASE64=1 \ | |
46 -DORTHANC_ENABLE_CIVETWEB=0 \ | |
47 -DORTHANC_ENABLE_CURL=1 \ | |
48 -DORTHANC_ENABLE_DCMTK=1 \ | |
49 -DORTHANC_ENABLE_DCMTK_JPEG=1 \ | |
50 -DORTHANC_ENABLE_DCMTK_JPEG_LOSSLESS=1 \ | |
51 -DORTHANC_ENABLE_GLEW=1 \ | |
52 -DORTHANC_ENABLE_JPEG=1 \ | |
53 -DORTHANC_ENABLE_LOCALE=1 \ | |
54 -DORTHANC_ENABLE_LOGGING=1 \ | |
55 -DORTHANC_ENABLE_LOGGING_STDIO=1 \ | |
56 -DORTHANC_ENABLE_MD5=1 \ | |
57 -DORTHANC_ENABLE_MONGOOSE=0 \ | |
58 -DORTHANC_ENABLE_OPENGL=1 \ | |
59 -DORTHANC_ENABLE_PKCS11=0 \ | |
60 -DORTHANC_ENABLE_PNG=1 \ | |
1639 | 61 -DORTHANC_ENABLE_PUGIXML=1 \ |
1571 | 62 -DORTHANC_ENABLE_SDL=1 \ |
63 -DORTHANC_ENABLE_SSL=1 \ | |
64 -DORTHANC_ENABLE_THREADS=1 \ | |
65 -DORTHANC_ENABLE_WASM=1 \ | |
66 -DORTHANC_ENABLE_ZLIB=1 \ | |
67 -DORTHANC_SANDBOXED=0 \ | |
68 -D__GNUC__ \ | |
69 -D__cplusplus=201103 \ | |
70 -D__linux__ \ | |
1573 | 71 -DEM_ASM \ |
1571 | 72 -UNDEBUG \ |
73 -I/home/jodogne/Subversion/orthanc/OrthancFramework/Sources \ | |
1583 | 74 -I/home/jodogne/Subversion/orthanc/OrthancServer/Plugins/Include/ \ |
1571 | 75 \ |
1573 | 76 ../../Applications/Samples \ |
77 ../../Applications/StoneWebViewer \ | |
1582 | 78 ../../OrthancStone/Sources \ |
79 \ | |
80 -i ../../Applications/Samples/RtViewerPlugin/i \ | |
81 -i ../../Applications/Samples/Sdl/i \ | |
82 -i ../../Applications/Samples/WebAssembly/i \ | |
83 -i ../../Applications/StoneWebViewer/Plugin/i \ | |
84 -i ../../Applications/StoneWebViewer/WebAssembly/StoneModule/i \ | |
85 -i ../../Applications/StoneWebViewer/WebAssembly/i \ | |
1639 | 86 -i ../../Applications/StoneWebViewer/WebAssembly/debug/ \ |
1571 | 87 \ |
88 2>&1 |