comparison Resources/holy-build-box-internal.sh @ 13:b7fa5e51367c

don't strip debug binaries
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 18 Jun 2019 09:41:59 +0200
parents 42a6a2dd54ff
children eb09eb1251b9
comparison
equal deleted inserted replaced
12:42a6a2dd54ff 13:b7fa5e51367c
25 -DORTHANC_FRAMEWORK_SOURCE=web \ 25 -DORTHANC_FRAMEWORK_SOURCE=web \
26 -DCMAKE_INSTALL_PREFIX=/target 26 -DCMAKE_INSTALL_PREFIX=/target
27 27
28 make -j`nproc` 28 make -j`nproc`
29 29
30 strip ./libOrthancGoogleCloudPlatform.so 30 if [ "$1" == "Release" ]; then
31 strip ./libOrthancGoogleCloudPlatform.so
32 fi
31 33
32 make install 34 make install