Mercurial > hg > orthanc-stone
view Samples/build-wasm-samples.sh @ 1502:e5729dab3f67
moving Deprecated/Applications/Generic/GuiAdapter.[cpp|h] to Framework/Deprecated/
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 30 Jun 2020 11:37:34 +0200 |
parents | f5493e5a51a3 |
children |
line wrap: on
line source
#!/bin/bash # # usage: # to build the samples in RelWithDebInfo: # ./build-wasm-samples.sh # # to build the samples in Release: # ./build-wasm-samples.sh Release set -e if [ ! -d "WebAssembly" ]; then echo "This script must be run from the Samples folder one level below orthanc-stone" exit 1 fi currentDir=$(pwd) samplesRootDir=$(pwd) devrootDir=$(pwd)/../../ buildType=${1:-RelWithDebInfo} buildFolderName="$devrootDir/out/build-stone-wasm-samples-$buildType" installFolderName="$devrootDir/out/install-stone-wasm-samples-$buildType" mkdir -p $buildFolderName # change current folder to the build folder pushd $buildFolderName # configure the environment to use Emscripten source ~/apps/emsdk/emsdk_env.sh emcmake cmake -G "Ninja" \ -DCMAKE_BUILD_TYPE=$buildType \ -DCMAKE_INSTALL_PREFIX=$installFolderName \ -DSTATIC_BUILD=ON -DALLOW_DOWNLOADS=ON \ $samplesRootDir/WebAssembly # perform build + installation ninja ninja install # restore the original working folder popd echo "If all went well, the output files can be found in $installFolderName:" ls $installFolderName