comparison Samples/build-wasm-RtViewer.sh @ 1396:dd2b75ee644b

cleanup + build script for RtViewer
author Alain Mazy <alain@mazy.be>
date Wed, 29 Apr 2020 19:00:30 +0200
parents
children 5d7ee14dc1eb
comparison
equal deleted inserted replaced
1395:62dc0d737e7b 1396:dd2b75ee644b
1 #!/bin/bash
2 #
3 # usage:
4 # to build the sample in Debug:
5 # ./build-wasm-SingleFrameViewer.sh
6 #
7 # to build the sample in Debug:
8 # ./build-wasm-SingleFrameViewer.sh Release
9
10 set -e
11
12 if [ ! -d "WebAssembly" ]; then
13 echo "This script must be run from the Samples folder one level below orthanc-stone"
14 exit 1
15 fi
16
17
18 currentDir=$(pwd)
19 samplesRootDir=$(pwd)
20 devrootDir=$(pwd)/../../
21
22 buildType=${1:-RelWithDebInfo}
23 buildFolderName="$devrootDir/out/build-stone-wasm-RtViewer-$buildType"
24 installFolderName="$devrootDir/out/install-stone-wasm-RtViewer-$buildType"
25
26 mkdir -p $buildFolderName
27 # change current folder to the build folder
28 pushd $buildFolderName
29
30 # configure the environment to use Emscripten
31 source ~/apps/emsdk/emsdk_env.sh
32
33 emcmake cmake -G "Ninja" \
34 -DCMAKE_BUILD_TYPE=$buildType \
35 -DCMAKE_INSTALL_PREFIX=$installFolderName \
36 -DSTATIC_BUILD=ON -DALLOW_DOWNLOADS=ON \
37 $samplesRootDir/WebAssembly/RtViewer
38
39 # perform build + installation
40 ninja install
41
42 # restore the original working folder
43 popd
44
45 echo "If all went well, the output files can be found in $installFolderName:"
46
47 ls $installFolderName