view Applications/Samples/rt-viewer-demo/build-wasm.sh @ 1331:ab81ee8fce1f broker

- Viewport is not passed and stored as a shared_ptr instead of raw reference. - ViewportController can now be injected with an undo stack (not a ctor param anymore, as a preparation for the move of the undo stack to an interactor) - Added (temp) flag to disable emscripten events registration in the WebAssemblyViewport (because legacy client code deals with them directly) - Added emscripten_clear_timeout in ~WebGLViewportsRegistry - Removed GenericToolbox::HoldingRef whose responsibility is better served with proper callback un-registration.
author Benjamin Golinvaux <bgo@osimis.io>
date Mon, 30 Mar 2020 14:23:46 +0200
parents 1d9deb4ee84c
children
line wrap: on
line source

#!/bin/bash
#
# usage:
# build-wasm BUILD_TYPE
# where BUILD_TYPE is Debug, RelWithDebInfo or Release

set -e

buildType=${1:-Debug}

currentDir=$(pwd)
currentDirAbs=$(realpath $currentDir)

mkdir -p build-wasm
cd build-wasm

source ~/apps/emsdk/emsdk_env.sh
cmake -G Ninja -DCMAKE_TOOLCHAIN_FILE=${EMSCRIPTEN}/cmake/Modules/Platform/Emscripten.cmake \
-DCMAKE_BUILD_TYPE=$buildType -DSTONE_SOURCES_DIR=$currentDirAbs/../../../../orthanc-stone \
-DORTHANC_FRAMEWORK_SOURCE=path -DORTHANC_FRAMEWORK_ROOT=$currentDirAbs/../../../../orthanc \
-DALLOW_DOWNLOADS=ON .. -DENABLE_WASM=ON

ninja $target

echo "-- building the web application -- "
cd $currentDir
./build-web.sh

echo "Launch start-serving-files.sh to access the web sample application locally"