Mercurial > hg > orthanc-stone
annotate Applications/Samples/build-wasm.sh @ 483:29fc066b6f65 am-touch-events
Export now accepts Json::Value
author | am@osimis.io |
---|---|
date | Fri, 15 Feb 2019 10:39:23 +0100 |
parents | 33983c2178ba |
children | 801d2697a1b1 |
rev | line source |
---|---|
295
b04b13810540
unified CMakeLists.txt into a single file for WASM/Native + bootstrap Command (to rework) + doc
am@osimis.io
parents:
diff
changeset
|
1 #!/bin/bash |
435
e641d3978856
WasmWebService now using BaseWebService and supporting cache
am@osimis.io
parents:
307
diff
changeset
|
2 # |
e641d3978856
WasmWebService now using BaseWebService and supporting cache
am@osimis.io
parents:
307
diff
changeset
|
3 # usage: |
464 | 4 # to build all targets in Debug: |
435
e641d3978856
WasmWebService now using BaseWebService and supporting cache
am@osimis.io
parents:
307
diff
changeset
|
5 # ./build-wasm.sh |
e641d3978856
WasmWebService now using BaseWebService and supporting cache
am@osimis.io
parents:
307
diff
changeset
|
6 # |
464 | 7 # to build a single target in release: |
8 # ./build-wasm.sh OrthancStoneSingleFrameEditor Release | |
295
b04b13810540
unified CMakeLists.txt into a single file for WASM/Native + bootstrap Command (to rework) + doc
am@osimis.io
parents:
diff
changeset
|
9 |
307 | 10 set -e |
11 | |
435
e641d3978856
WasmWebService now using BaseWebService and supporting cache
am@osimis.io
parents:
307
diff
changeset
|
12 target=${1:-all} |
463
1155d0b4f557
debug build by default to have access to the C++ call stack when assertion fails
Alain Mazy <alain@mazy.be>
parents:
461
diff
changeset
|
13 buildType=${2:-Debug} |
435
e641d3978856
WasmWebService now using BaseWebService and supporting cache
am@osimis.io
parents:
307
diff
changeset
|
14 |
295
b04b13810540
unified CMakeLists.txt into a single file for WASM/Native + bootstrap Command (to rework) + doc
am@osimis.io
parents:
diff
changeset
|
15 currentDir=$(pwd) |
b04b13810540
unified CMakeLists.txt into a single file for WASM/Native + bootstrap Command (to rework) + doc
am@osimis.io
parents:
diff
changeset
|
16 samplesRootDir=$(pwd) |
b04b13810540
unified CMakeLists.txt into a single file for WASM/Native + bootstrap Command (to rework) + doc
am@osimis.io
parents:
diff
changeset
|
17 |
b04b13810540
unified CMakeLists.txt into a single file for WASM/Native + bootstrap Command (to rework) + doc
am@osimis.io
parents:
diff
changeset
|
18 mkdir -p $samplesRootDir/build-wasm |
b04b13810540
unified CMakeLists.txt into a single file for WASM/Native + bootstrap Command (to rework) + doc
am@osimis.io
parents:
diff
changeset
|
19 cd $samplesRootDir/build-wasm |
b04b13810540
unified CMakeLists.txt into a single file for WASM/Native + bootstrap Command (to rework) + doc
am@osimis.io
parents:
diff
changeset
|
20 |
446
3fd8e4e5f93e
changed path to emsdk (it shall now be in ~/apps instead of ~/Downloads)
Alain Mazy <alain@mazy.be>
parents:
435
diff
changeset
|
21 source ~/apps/emsdk/emsdk_env.sh |
463
1155d0b4f557
debug build by default to have access to the C++ call stack when assertion fails
Alain Mazy <alain@mazy.be>
parents:
461
diff
changeset
|
22 cmake -G Ninja -DCMAKE_TOOLCHAIN_FILE=${EMSCRIPTEN}/cmake/Modules/Platform/Emscripten.cmake -DCMAKE_BUILD_TYPE=$buildType -DSTONE_SOURCES_DIR=$currentDir/../../../orthanc-stone -DORTHANC_FRAMEWORK_SOURCE=path -DORTHANC_FRAMEWORK_ROOT=$currentDir/../../../orthanc -DALLOW_DOWNLOADS=ON .. -DENABLE_WASM=ON |
461
593b8c3c02fb
fix build setting + build with ninja
Alain Mazy <alain@mazy.be>
parents:
446
diff
changeset
|
23 ninja $target |
295
b04b13810540
unified CMakeLists.txt into a single file for WASM/Native + bootstrap Command (to rework) + doc
am@osimis.io
parents:
diff
changeset
|
24 |
b04b13810540
unified CMakeLists.txt into a single file for WASM/Native + bootstrap Command (to rework) + doc
am@osimis.io
parents:
diff
changeset
|
25 echo "-- building the web application -- " |
b04b13810540
unified CMakeLists.txt into a single file for WASM/Native + bootstrap Command (to rework) + doc
am@osimis.io
parents:
diff
changeset
|
26 cd $currentDir |
b04b13810540
unified CMakeLists.txt into a single file for WASM/Native + bootstrap Command (to rework) + doc
am@osimis.io
parents:
diff
changeset
|
27 ./build-web.sh |