Mercurial > hg > orthanc-python
view Resources/Builders/DebianStable/docker-internal.sh @ 58:ef1a1ce0c1e3
During Orthanc shutdown, wait for all the pending events to have been processed
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Fri, 22 Jan 2021 07:36:18 +0100 |
parents | 8ec973ae8d6c |
children |
line wrap: on
line source
#!/bin/bash set -ex mkdir /tmp/source-writeable cp -r /source/CMakeLists.txt /tmp/source-writeable/ cp -r /source/Sources /tmp/source-writeable/ cp -r /source/Resources /tmp/source-writeable/ mkdir /tmp/build cd /tmp/build cmake /tmp/source-writeable/ \ -DCMAKE_BUILD_TYPE=$1 \ -DPYTHON_VERSION=3.7 \ -DSTATIC_BUILD=ON \ -DCMAKE_INSTALL_PREFIX=/target make -j`nproc` if [ "$1" == "Release" ]; then strip ./libOrthancPython.so fi make install