annotate Applications/Samples/build-wasm.sh @ 1190:f417a0ae282b

wip: TextLayer with new fonts
author Alain Mazy <alain@mazy.be>
date Tue, 26 Nov 2019 15:27:48 +0100
parents 40bb5eb247a5
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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
be2660b6e40a wip: commands + status update
am@osimis.io
parents: 295
diff changeset
10 set -e
be2660b6e40a wip: commands + status update
am@osimis.io
parents: 295
diff changeset
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
1190
f417a0ae282b wip: TextLayer with new fonts
Alain Mazy <alain@mazy.be>
parents: 518
diff changeset
22 cmake -G Ninja -DCMAKE_TOOLCHAIN_FILE=~/apps/emsdk/upstream/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