Mercurial > hg > orthanc-stone
annotate Applications/Samples/build-wasm.sh @ 1058:a36c47487a70 broker
integration mainline->broker
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Fri, 11 Oct 2019 13:38:35 +0200 |
parents | 40bb5eb247a5 |
children | f417a0ae282b |
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: |
518
40bb5eb247a5
Reverted a couple of files to AM version (wrong changes on my end)
Benjamin Golinvaux <bgo@osimis.io>
parents:
506
diff
changeset
|
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 # |
518
40bb5eb247a5
Reverted a couple of files to AM version (wrong changes on my end)
Benjamin Golinvaux <bgo@osimis.io>
parents:
506
diff
changeset
|
7 # to build a single target in release: |
40bb5eb247a5
Reverted a couple of files to AM version (wrong changes on my end)
Benjamin Golinvaux <bgo@osimis.io>
parents:
506
diff
changeset
|
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} |
518
40bb5eb247a5
Reverted a couple of files to AM version (wrong changes on my end)
Benjamin Golinvaux <bgo@osimis.io>
parents:
506
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 |
518
40bb5eb247a5
Reverted a couple of files to AM version (wrong changes on my end)
Benjamin Golinvaux <bgo@osimis.io>
parents:
506
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 |
518
40bb5eb247a5
Reverted a couple of files to AM version (wrong changes on my end)
Benjamin Golinvaux <bgo@osimis.io>
parents:
506
diff
changeset
|
27 ./build-web.sh |