comparison Samples/build-wasm-samples.sh @ 1419:f5493e5a51a3

single CMakeLists.txt for all SDL samples & unit tests + another one for all Wasm samples
author Alain Mazy <alain@mazy.be>
date Wed, 13 May 2020 12:42:52 +0200
parents
children
comparison
equal deleted inserted replaced
1415:998697c5ec74 1419:f5493e5a51a3
1 #!/bin/bash
2 #
3 # usage:
4 # to build the samples in RelWithDebInfo:
5 # ./build-wasm-samples.sh
6 #
7 # to build the samples in Release:
8 # ./build-wasm-samples.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-samples-$buildType"
24 installFolderName="$devrootDir/out/install-stone-wasm-samples-$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
38
39 # perform build + installation
40 ninja
41 ninja install
42
43 # restore the original working folder
44 popd
45
46 echo "If all went well, the output files can be found in $installFolderName:"
47
48 ls $installFolderName